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

Casino Plugin? (1 Viewer)

gkr1981

New member
Joined
Jun 24, 2006
RedCents
Anyone know of a casino plugin that will hand tokens you buy and delete stat food and will stop at a gold ticket and autoinventory?
 
Use
Rich (BB code):
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


and use that plugin that deletes anything on your mouse that you specify in an .ini

I forget the name. I know turkreno has it though
 
Casino Plugin?

Users who are viewing this thread

Back
Top