• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

help with hot button (1 Viewer)

molo1

New member
Joined
Feb 23, 2006
RedCents
i saw info on this site (now not able to find) about a hot button having random info on it..

ie.. hot button for inc..

inside some file you put what you want

inc %t

inc %t hit it before it kills me

big mob inc %t. handle with care

wow look at %t, it looks pissed.


all that would be randomed if i hit the button. can any find the infrmation?
 
Could make a macro that you trigger with a hotbutton and it ends itself. Just have a variable for x. Macro does a random say 5 and whaterver that equals is the message group gets and it then ends itself.
 
Here is a dll for Randomstuff.. dont know if it works or not so you'll have to test it yourself.

this would be your hotkey
Rich (BB code):
/multiline ; /randomstuff incoming ; /gsay ${RandomStuff}

and this would be your MQ2Randomstuff.ini
Rich (BB code):
[incoming]
incoming1=%t incoming!
incoming2=inc %t hit it before it kills me
incoming3=big mob inc %t. handle with care
incoming4=wow look at %t, it looks pissed.

see if that works
 
Rich (BB code):
#Event Incoming			"[MQ2] incoming"
Sub Event_Incoming 
	/declare RND int 
	/declare INC[4] string 
	/varset INC[1] "I just teabagged a << %T >> and %s is very angry!!" 
	/varset INC[2] "Save the Women and the RANGERS, %T INC!" 
	/varset INC[3] "Anyone else want to have a ride on the neighborhood %t?"
	/varset INC[4] "Incoming > %t < KILL IT!!!" 
	/varcalc RND ${Math.Rand[4]} + 1 
	
	/gsay ${INC[${RND}]} 
/return
 
help with hot button

Users who are viewing this thread

Back
Top