Page 1 of 1
Changeing GuildMotd via Chat Channel
Posted: Tue Mar 08, 2005 4:45 pm
by mponthepc
I'm trying to leave a bot up with an officer tag. that is logged into a chat channel. The bots macro will watch the channel and take anything said in it and put it up in the MOTD. I have it working atm with tells but that as you can imagine is just not desireable. I'm still a little new to this can someone help me tweak my code to get this running?
Code: Select all
#chat tell
sub main
:talkloop
/doevents
/goto :talkloop
/return
Sub Event_Chat(ChatType,Sender,ChatText)
/guildmotd ${Sender}: ${ChatText}
/return
Posted: Tue Mar 08, 2005 5:32 pm
by blueninja
Just use a custom event. Something like this..
Code: Select all
#event Motd "#1# tells channelname, '#2#'
Sub Event_Motd(Line,Sender,Text)
/guildmotd ${Sender}: ${Text}
/return
Re: Changeing GuildMotd via Chat Channel
Posted: Wed Mar 09, 2005 1:22 am
by Goofmester1
Code: Select all
#chat chat
sub main
/declare ChatChannel string outer None
/varset ChatChannel ${Param0}
:talkloop
/doevents
/goto :talkloop
/return
Sub Event_Chat(ChatType,Sender,ChatText)
/if (${ChatType.Equal[${ChatChannel}]}) /guildmotd ${Sender}: ${ChatText}
/return
Start this with /macro nameormacro channelname and it should work as you want. (This does not auto join you to the channel.)
Thanks
Posted: Mon Mar 14, 2005 7:49 am
by mponthepc
Thanks for the help. This will be part of a bigger project to help alleviate the administrative cluster of SoE refusal to granularize the guild leaders ability to distribute rights to members. For this part raid leaders will be able to change the motd without being officers.
Update: I finished adding the features I wanted and posted it in the Macro Depot. Thanks again!
http://www.macroquest2.com/phpBB2/viewtopic.php?t=10913
Re: Changeing GuildMotd via Chat Channel
Posted: Tue Apr 29, 2025 2:34 pm
by xyilla
Re: Changeing GuildMotd via Chat Channel
Posted: Tue Apr 29, 2025 2:35 pm
by xyilla
Re: Changeing GuildMotd via Chat Channel
Posted: Tue Apr 29, 2025 2:36 pm
by xyilla
Re: Changeing GuildMotd via Chat Channel
Posted: Tue Apr 29, 2025 2:37 pm
by xyilla
Re: Changeing GuildMotd via Chat Channel
Posted: Tue Apr 29, 2025 2:38 pm
by xyilla
Re: Changeing GuildMotd via Chat Channel
Posted: Tue Apr 29, 2025 2:39 pm
by xyilla