Hey guys i'm wondering if it its possible to have a gui screen that shows if party chat is on or not. I find that i always forget if it is or not and i couldn't get it to work with my knowledge of macro mod. If anyone could help me or make a tutorial it would be highly appreciated! Thanks! jakeyray18 sorry for tagging you, i know you're busy but if you could help me out it would be awesome! thanks!
Thread Tools
Thread Tools
-
bARely_TrYx_HI BuilderBuilder ⛰️ Ex-Mayor ⚒️⚒️
-
GungnirIncarnate BuilderBuilder ⛰️ Ex-President ⚒️⚒️ Premium Upgrade
-
bARely_TrYx_HI BuilderBuilder ⛰️ Ex-Mayor ⚒️⚒️
i think having the one showing all the channels would better
-
bARely_TrYx_HI BuilderBuilder ⛰️ Ex-Mayor ⚒️⚒️
i have his one atm but im looking for one to include party chat or just have a separate pary chat True,False guy
-
GungnirIncarnate BuilderBuilder ⛰️ Ex-President ⚒️⚒️ Premium Upgrade
Sorry totally forgot about this, set this to the onChat event and create a label with the Control name as 'channels'
Code:$${ STRIP(&chat,%CHAT%) IFMATCHES(%&chat%,Now chatting (in|with) (.*)\.) MATCH(%&chat%,Now chatting (in|with) (.*)\.,{&chpm,&chname}) IFMATCHES(%&chpm%,with) IF(party) SET(&mem,"&eChatting with &d%&chname%) STOP ENDIF SETLABEL(channels,&eChatting with &d%&chname%) ELSE IFMATCHES(%&chpm%,in) IF(party) SET(&mem,"&eChatting in %&color%%&chname%) STOP ENDIF IF(%&chname% = "Global") &color = &f ELSEIF(%&chname% = "Auction") &color = &b ELSEIF(%&chname% = "Trade") &color = &7 ELSEIF(%&chname% = "Nether") &color = &d ELSEIF(%&chname% = "Mining") &color = &e ELSEIF(%&chname% = "Aether") &color = &e ELSEIF(%&chname% = "Local") &color = &e ELSEIF(%&chname% = "Donator") &color = &a ELSEIF(%&chname% = "Pvp") &color = &5 ELSEIF(%&chname% = "hg") &color = &e ENDIF SETLABEL(channels,&eChatting in %&color%%&chname%) ENDIF ENDIF ENDIF IFMATCHES(%&chat%,Party Chat only On) SET(&mem,"&eChatting %&chpm% %&color%%&chname%) SET(party) SETLABEL(channels,&eChatting in &aParty Chat) ENDIF IFMATCHES(%&chat%,Party Chat only Off) UNSET(party) SETLABEL(channels,%&mem%) ENDIF }$$
Again if you get any bugs or anything, give me a shout and I will see what I can do.
~Jakey-
Winner x 1 - List
-
-
bARely_TrYx_HI BuilderBuilder ⛰️ Ex-Mayor ⚒️⚒️
Thank you so much!
-
GungnirIncarnate BuilderBuilder ⛰️ Ex-President ⚒️⚒️ Premium Upgrade
Your welcome :)