Username: Password:

Recent Posts

Pages: [1] 2 3 ... 10
1
General Discussions / Re: Ideas for future versions.
« Last post by Tigreal on February 01, 2026, 12:18:55 pm »
Add to main section show the current waypoint
Example
CW: 0-base
CW: 1-to_shop
CW: 2-back_to_hunt
2
Useful Parts / Re: [Share] New shop script + unwanted items script
« Last post by Tigreal on January 31, 2026, 06:31:13 pm »
I understand. We need to enter the ID of the item we want to sell in the loot section.
3
Useful Parts / Re: [Share] New shop script + unwanted items script
« Last post by =Mindee= on January 30, 2026, 11:05:39 am »
ShopName = 'Scrapyard' # Change to your shop name which you will be using
# For Scrapyard set to 1. For other shops set to 2.
SellOptionId = 1

Make sure shop name is correct and also SellOptionId.
4
Useful Parts / Re: [Share] New shop script + unwanted items script
« Last post by Tigreal on January 29, 2026, 09:24:33 am »
Script dont have shop sale items id option
so bot stuck at shop
5
Mindee BOT News and Updates / Mindee-BOT v0.2d - R2 - v2.6.77 patch released.
« Last post by =Mindee= on December 22, 2025, 09:23:53 am »
What's new:

- New "engine" for script.RunEvent and etc functions.
- New script functions: RunRepeatingEvent, RunRepeatingEventEx, and CancelAllEvents.
6
Scripting / Re: Scripting Documentation
« Last post by =Mindee= on December 21, 2025, 10:53:24 am »
Methods Part 4

script.RunEvent('eventName', delay)
- Runs event/method after delay.
For example if you have function "def doStuff():", you can use this to run it after delay like that: script.RunEvent('doStuff', 1000)
Delay is in milliseconds. 1000 = 1 second.
script.RunEvent('doStuff', 0) is same as just calling doStuff().

script.RunEventEx('eventName', variable, delay)
- Runs event/method after delay with variable included.
For example if you have function "def doStuff(itemId):", you can use this to run it after delay like that: script.RunEventEx('doStuff', 1234, 1000)
Delay is in milliseconds. 1000 = 1 second.
script.RunEventEx('doStuff', 1234, 0) is same as just calling doStuff(1234).
Variable can be any type.

script.RunRepeatingEvent('eventName', interval)
- Runs event/method every interval until you cancel it or disable the script.
For example if you have function "def doStuff():", you can use this to run it in intervals like that: script.RunRepeatingEvent('doStuff', 1000)
Interval is in milliseconds. 1000 = 1 second.

script.RunRepeatingEventEx('eventName', variable, startDelay, interval)
- Runs event/method after startDelay with variable included and then repeats it every interval until you cancel it or disable the script.
For example if you have function "def doStuff(itemId):", you can use this to run it every interval like that: script.RunRepeatingEventEx('doStuff', 1234, 1000)
Delay is in milliseconds. 1000 = 1 second.
Variable can be any type.

script.RunEventAt(tab_id, event_name, delay)
- Runs event by name on specified tab with delay. 0 delay = instant.
- Script on specified tab must contain the event in the script box and script must be enabled on that tab.
- Returns "OK" on execution or an error text.
Example:
Tab1:
Code: [Select]
def onScriptActivation():
   script.RunEventAt(2, 'sayHello', 0)

Tab2:
Code: [Select]
def sayHello():
   script.Say('Hello world!')

script.CancelEvent("eventName")
- Cancels scheduled event by name.
- Returns "[not_found]", "[failed]" or "[ok]" result.

script.CancelAllEvents()
- Cancels all scheduled and running events.
- Returns number of events cancelled.
7
Mindee BOT News and Updates / Mindee-BOT v0.2d - R2 - v2.6.76 patch released.
« Last post by =Mindee= on December 20, 2025, 04:53:20 pm »
What's new:

- Added new script.DropitemId() script function, which allows you to search for free spot and drop items by itemId instead of slot.
8
OFF-TOPIC / Re: Your favorite music.
« Last post by Uzman on December 19, 2025, 03:47:12 pm »


 [snoopdog]
9
OFF-TOPIC / Re: Your favorite music.
« Last post by Uzman on December 19, 2025, 03:43:59 pm »


 [badumtss]
10
Mindee BOT News and Updates / Mindee-BOT v0.2d - R2 - v2.6.72 version released.
« Last post by =Mindee= on December 15, 2025, 04:39:36 pm »
What's new:

- Added support for the newest cipsoft update. Now bot works again.
Pages: [1] 2 3 ... 10