• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver
Resource icon

Release stress test eqbcs (for developers) 2019-12-18

No permission to download

Redbot

💻❤️
Moderator
Joined
Oct 15, 2004
RedCents
104,098¢
Pronouns
He/Him
eqmule provided this to help devs debug eqbcs and I thought it was neat.

Rich (BB code):
| stress.mac
| start it on 6 chars in the same group
| after a while it will lag eqbcs out completely
#turbo 80


#bind CastingRadiantCure /CastingRadiantCure

Sub Main
/declare WhoCastingRcureList string outer
/declare notifyOtherCuring string outer FALSE

:MainLoop
	/delay ${Math.Rand[10]}
	/call cast_RadiantCure
/goto :MainLoop	
/return

Sub Bind_CastingRadiantCure(whoCasting, toggle)
    /if (${toggle.Equal[Y]}) {
      /varset WhoCastingRcureList ${WhoCastingRcureList}${whoCasting}|
    } else {
      /varset WhoCastingRcureList ${WhoCastingRcureList.Replace[${whoCasting}|,]}
      /varset notifyOtherCuring FALSE
    }
/return

Sub cast_RadiantCure
  /if (${Bool[${WhoCastingRcureList.Length}]}) {
    /if (!${notifyOtherCuring}) /echo ${WhoCastingRcureList.Replace[|,]} is casting Rcure
    /varset notifyOtherCuring TRUE
    /return
  }
  /bc [${Time}] RadiantCure inc... from ${Me.Name}
  /squelch /bcg //CastingRadiantCure ${Me.Name} Y
  /delay 3s
  /squelch /bcg //CastingRadiantCure ${Me.Name} N
/return
 
Last edited by a moderator:
Looks like this isn't working properly anymore, it's lagging without any eqbcs running. @eqmule any idea how to fix?
 
Release stress test eqbcs (for developers)

Users who are viewing this thread

Back
Top
Cart