CurseForge Register Sign In

Authors CurseForge

  • Dashboard
  • Forums
  • Paste
  • Knowledge Base
  • Reward Store
Desktop View
  • Home
  • Member List
  • _ForgeUser144837's Profile
  • Send Private Message
  • View _ForgeUser144837's Profile
  • _ForgeUser144837
  • Registered User
  • Member for 14 years, 2 months, and 13 days
    Last active Fri, Oct, 4 2013 21:29:58
  • 0 Followers
  • 160 Total Posts
  • 0 Thanks
  • Posts
  • Threads
  • Forum Posts
  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 10
  • Next
  • View _ForgeUser144837's Profile

    0

    Oct 25, 2007
    _ForgeUser144837 posted a message on Download Rock?
    http://files.wowace.com/sw-l.html
    Posted in: Rock
  • View _ForgeUser144837's Profile

    0

    Oct 23, 2007
    _ForgeUser144837 posted a message on FuBar_AddonSpamFu - Official Thread
    Paste this code into the AddonSpamFu:AddMessage( function just before the local dataLen = strlen(origPrefix) + strlen(msg) line.
    if self.recordToSavedVariables then
    	if not self.db.profile.AddonSpamLog then
    		self.db.profile.AddonSpamLog = {}
    	elseif #self.db.profile.AddonSpamLog == 500 then
    		table.remove(self.db.profile.AddonSpamLog, 1)
    	end
    	table.insert(self.db.profile.AddonSpamLog, ((showRenamedPrefix and prefix..": [") or "[")..origPrefix.."]["..msg.."]["..msgtype.."]"..destination.."["..name.."]")
    end

    To enable logging, type this into your Chat window:
    /script AddonSpamFu.recordToSavedVariables=true

    To disable, type this:
    /script AddonSpamFu.recordToSavedVariables=nil


    The information is only stored in memory until you log out or reload your UI, then you can view the logged information by opening up the AddonSpamFu savedvariables file with a text editor and looking for the start of the "AddonSpamLog" table. This is the only way for an addon to record information for view outside of the game.

    You should empty this log when you don't need its contents anymore by running the following command:
    /script AddonSpamFu.db.profile.AddonSpamLog = nil

    Otherwise the log will keep only the 500 most recent entries.

    This is all drycoded and untested code
    Posted in: FuBar AddOns
  • View _ForgeUser144837's Profile

    0

    Oct 23, 2007
    _ForgeUser144837 posted a message on wildcard ?
    ~= is "not equal to"

    http://www.wowwiki.com/HOWTO:_Use_Pattern_Matching
    Posted in: General Chat
  • View _ForgeUser144837's Profile

    0

    Oct 21, 2007
    _ForgeUser144837 posted a message on Omen Versions
    It would communicate with anyone in your guild, Raid, BattleGround, or party.
    Posted in: Raid AddOns
  • View _ForgeUser144837's Profile

    0

    Oct 21, 2007
    _ForgeUser144837 posted a message on FuBar_AddonSpamFu - Official Thread
    Unfortunately, there's no really good way to determine what addon is sending the "k?" prefixed message without help from the user sending it.

    Since the prefix appears to be random characters, it is probably an Ace2 addon using AceComm.

    I don't think it would be such a good idea to record all messages to a file since it could get very large very fast. Perhaps a screenshot of an expanded chat window would suffice?
    Quote from Funkydude »

    I think it might be gladiator using a blank prefix, or what seems to be blank.

    Thanks, got it.
    Posted in: FuBar AddOns
  • View _ForgeUser144837's Profile

    0

    Oct 18, 2007
    _ForgeUser144837 posted a message on FuBar_AddonSpamFu - Official Thread
    Thanks, that should have been obvious...
    Posted in: FuBar AddOns
  • View _ForgeUser144837's Profile

    0

    Oct 17, 2007
    _ForgeUser144837 posted a message on FuBar_AddonSpamFu - Official Thread
    I also had to disable QuestsFu. Its syncing logic is messed up and it seems to go spam crazy sometimes. It also frustrated me that it still tried to sync even when party sharing was disabled.
    Posted in: FuBar AddOns
  • View _ForgeUser144837's Profile

    0

    Oct 15, 2007
    _ForgeUser144837 posted a message on Why does this Babble crap auto download with AceUpdater
    Download Manage & View My Addons and use it to determine which addons use Babble. Delete these addons.

    Or turn off the Automatic Dependency Download option in WowAceUpdater.
    Posted in: Libraries
  • View _ForgeUser144837's Profile

    0

    Oct 13, 2007
    _ForgeUser144837 posted a message on Coding a minimap button add-on
    Have you checked out the 2.3 patch on the PTR? They're making some changes to the tracking system.
    Posted in: Lua Code Discussion
  • View _ForgeUser144837's Profile

    0

    Oct 11, 2007
    _ForgeUser144837 posted a message on self when used in a lib
    Self never refers to the addon using a library when within the library.

    http://www.wowwiki.com/Object_Oriented_Programming#Metatables

    Note the part about functions (methods) with colons.

    function.method(self,parameter1,parameter2) is the same as function:method(parameter1,parameter2)

    self is still available in the latter, but hidden. It's just syntax.

    (Forgive me if I'm wrong, I can't find the right link)

    Posted in: Lua Code Discussion
  • View _ForgeUser144837's Profile

    0

    Oct 11, 2007
    _ForgeUser144837 posted a message on FuBar and memory consumption
    If you have a single resource hungry addon such as Recount, and you let it run for a long time, its memory usage will become huge. Recount should be reset regularly. If you're using Recount with embedded libraries, its resource usage could be attributed to any other addon which is using the same libraries.
    Posted in: FuBar AddOns
  • View _ForgeUser144837's Profile

    0

    Oct 10, 2007
    _ForgeUser144837 posted a message on FuBar_AddonSpamFu - Official Thread
    Quote from Kadeth »

    LibRockComm-1.0 Sends the prefix TAL as part of it's function RockComm:QueryTalents

    Thanks :) It seems to use UnT and VER also.
    Posted in: FuBar AddOns
  • View _ForgeUser144837's Profile

    0

    Oct 10, 2007
    _ForgeUser144837 posted a message on To surpress linked items...
    msg:match("item:2244:")
    Posted in: Addon Ideas
  • View _ForgeUser144837's Profile

    0

    Oct 10, 2007
    _ForgeUser144837 posted a message on Cartographer_GuildPositions addition request!
    GuildMap used to work with Cartographer, providing dots on your minimap.

    I doubt that it still works with the recent changes to Cartographer's communications.

    Constantly communicating your position among guild mates is inefficient.
    Posted in: Map/Minimap AddOns
  • View _ForgeUser144837's Profile

    0

    Oct 10, 2007
    _ForgeUser144837 posted a message on ClockFu error
    Install LibFuBarPlugin-3.0
    Posted in: FuBar AddOns
  • To post a comment, please login or register a new account.
  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 10
  • Next
  • Product
    • Overwolf platform
    • Appstore
    • Download Overwolf
  • Developers
    • Getting started
    • Documentation
    • Apply for funding
  • Partners
    • Advertise on Overwolf
    • Partner with us
    • Influencers
  • Company
    • About us
    • Our story
    • Commitment to gamers
    • Blog
    • Career
  • Resources
    • Help & support
    • Terms of service
    • Privacy policy
    • Brand guidelines