/run local guildLoot_mainTotal = guildLoot_currentTotal; local yourGuild, _, _ = GetGuildInfo("player"); SendChatMessage( GetCoinTextureString( guildLoot_currentTotal ) .. " put in " .. yourGuild .. "'s bank, from me looting.", GUILD )
I tried using the gold, silver, and copper variable's used for the guildLoot_currentTotal variable, but found they can only be used either, when the CHAT_MSG_MONEY event is fired, or inside the GetCoinTextureString function, so i am now at a dead end.
other than you cannot send texture strings in chat messages, no
Well now:
elseif IsShiftKeyDown() then
/run local guildLoot_mainTotal = guildLoot_currentTotal; local yourGuild, _, _ = GetGuildInfo("player"); SendChatMessage( guildLoot_mainTotal .. " put in " .. yourGuild .. "'s bank, from me looting.", PARTY )
give's me this error:
unexpected error near '/'
On line 96 which is the '/run' code snippet posted above.
elseif IsShiftKeyDown() then
/run local guildLoot_mainTotal = guildLoot_currentTotal; local yourGuild, _, _ = GetGuildInfo("player"); SendChatMessage( guildLoot_mainTotal .. " put in " .. yourGuild .. "'s bank, from me looting.", PARTY )
give's me this error:
On line 96 which is the '/run' code snippet posted above.
Remove "/run". That only works from the chat prompt.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
/party TEXT
/guild TEXT
/whisper person TEXT
/yell TEXT
I have tried everything i can think of and I've gone insane.
wwwdot, have you considered joining us in IRC on freenode/#wowace
Yea, sorry about that, i didn't look there before asking, i just tried everything i knew already.
It give's this error:
I tried using the gold, silver, and copper variable's used for the guildLoot_currentTotal variable, but found they can only be used either, when the CHAT_MSG_MONEY event is fired, or inside the GetCoinTextureString function, so i am now at a dead end.
Well now:
give's me this error:
On line 96 which is the '/run' code snippet posted above.
Remove "/run". That only works from the chat prompt.