• 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 --->

Int question (1 Viewer)

Joined
Sep 26, 2005
RedCents
On the dreadland quests there is an event that i cant figure out how to pull the time off the text and execute it in the code. It says something like "you can not have another task of this type for 01:00 minute". Ill pull the exact saying from my log.

Anyways i can get it to work by

#event Timer "#*#you can not have another task of#*#"


Sub timer
/delay 15m
/return



now this would work, but valuable minutes would be wasted sitting the whole 15 minutes. I want it to read the text pull the time and then put it in the code
I know im going to have to /declare int and ${tasktime} I just cant seem to get it to work.
 
Last edited:
Hmm, while I'm not *positive*, it should run something like this:
Rich (BB code):
#event timer "#*#You cannot have another task for #1# minutes#*#"

Sub event_timer(string line, int remaining) {
/delay ${Math.Calc[${remaining}+1]}m
/return
 
Int question

Users who are viewing this thread

Back
Top