• 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 --->
  • Unfortunately, yes, there is a suspension wave happening around the new tlp launch. :'( Please keep regular discussion to Suspension MegaThread and please consider submitting a Suspension report to RG.

casino macro need ) (1 Viewer)

leplubo

New member
Joined
Feb 22, 2006
RedCents
i do a search before post and trying to search a macro that do just give 4 token and stop when get golden ticket i try 2 or 3 macro but all seem to not working
it could be very nice if someone could write a quick thing simple that give 4 token and stop when gold ticket come ) ty by advance and sorry for bad anglish
i am frenchy nobody s perfect )
 
Buy the tokens open the bags with with tokens in them and then move to and target the guy you want to hand the tokens too.
This works for me.
Rich (BB code):
|Casino Plat-waster by Groo Apr 29, 2004

Sub Main
   /declare i int
   :Loop
      /for i 0 to 3
         /call PickupToken
         /call GiveToken ${i}
      /next i
      /call ClickTrade
      /call ClearCursor
      /if (${FindItem[Gold Ticket].ID}) {
         /beep
         /endmacro
      }
      /delay 1s
      /goto :Loop
   /return

Sub GiveToken(i)
   /if (${i}>0) {
      /notify GiveWnd GVW_MyItemSlot${i} leftmouseup
   } else {
      /click left target
      :Loop
         /delay 1
         /if (!${Window[GiveWnd].Open}) /goto :Loop
   }
   /delay 3
   /return

Sub PickupToken
   /if (!${FindItem[King's Court Token].ID}) {
        /echo Could not find King's Court Token in inventory
      /beep
       /endmacro
    }

   :Loop
      /ctrl /itemnotify ${FindItem[=King's Court Token].InvSlot} leftmouseup

      /if (!${Cursor.ID}) {
         /delay 1
         /goto :Loop
      }
   /return

Sub ClickTrade
   /notify GiveWnd GVW_Give_Button leftmouseup   
   /delay 1s
   /return

sub ClearCursor
    :Loop
      /if (!${Cursor.ID}) /return
      /autoinv
      /delay 1s
      /doevents
      /goto :Loop
    /return
 
here is a sample of how it woould work.
Rich (BB code):
#event ticket "You have gotten a ticket and you need exact text here."

sub event_ticket
/echo yay you won.
/end

you need to throw a /doevents in there some where too.
 
casino macro need )

Users who are viewing this thread

Back
Top