October 21, 20169 yr Hey guys, i downloaded this custom profile: with following settings: /* _________________ * * Settings: * _________________ */ public const string Message = "Hello, how are you?"; // Message at send. public const bool SendWhispers = false; // put 'true' to send whispers at all nearest players, put 'false' to send messages to the selected ChannelId public const string ChannelId = "2"; // channel id (2 == trade) public const int EverySeconds = 40; // Time in seconds between two send How can i change the Channel ID to the SAY Channel ? I really appreciate any help. Greetings.
October 21, 20169 yr 14 minutes ago, xandrosz said: 15 minutes ago, xandrosz said: Hey guys, i downloaded this custom profile: with following settings: /* _________________ * * Settings: * _________________ */ public const string Message = "Hello, how are you?"; // Message at send. public const bool SendWhispers = false; // put 'true' to send whispers at all nearest players, put 'false' to send messages to the selected ChannelId public const string ChannelId = "2"; // channel id (2 == trade) public const int EverySeconds = 40; // Time in seconds between two send How can i change the Channel ID to the SAY Channel ? I really appreciate any help. Greetings. Hey guys, i downloaded this custom profile: with following settings: /* _________________ * * Settings: * _________________ */ public const string Message = "Hello, how are you?"; // Message at send. public const bool SendWhispers = false; // put 'true' to send whispers at all nearest players, put 'false' to send messages to the selected ChannelId public const string ChannelId = "2"; // channel id (2 == trade) public const int EverySeconds = 40; // Time in seconds between two send How can i change the Channel ID to the SAY Channel ? I really appreciate any help. Greetings. So far i can see the "2"; is done like typed like /2 ingame to get to trade. So have you tried to put in the "say"/"yell"/"tell" or whatever instead of the "2" ?
October 21, 20169 yr Author Of course, if i put in "SAY" the Bot doesnt do anything. The profile only works with channel numbers
October 21, 20169 yr Hello, line 133, replace Lua.LuaDoString("SendChatMessage(\"" + Message + "\", \"CHANNEL\", nil, " + ChannelId + ");"); by Lua.LuaDoString("SendChatMessage(\"" + Message + "\", \"SAY\");"); ref: http://wow.gamepedia.com/API_SendChatMessage
Create an account or sign in to comment