Username: Password:

Recent Posts

Pages: 1 [2] 3 4 ... 10
11
Request / How to encrypt a script?
« Last post by Tigreal on April 21, 2026, 08:44:21 pm »
How to encrypt a script?
12
Trade / Re: [Sell] TibiaME - Scripts
« Last post by Tigreal on April 21, 2026, 08:26:50 pm »
u have contact mail or whatsapp? discord blocked in my country
13
Mindee BOT News and Updates / Mindee-BOT v0.2d - R2 - v2.6.82 patch released.
« Last post by =Mindee= on April 16, 2026, 05:20:03 am »
What's new:

Following tonight’s changes by CipSoft, teleportation and several other bot features were affected, but have now been fully restored.
14
Marketplace / [Buying] I want buy character 300+ wizard
« Last post by DeepSecurity on April 09, 2026, 10:32:40 pm »
Hello Guys,

i am trying to back to play again, and now i am searching for a character level 300+ preference for wizard, but if a good price, i can go ahead with warrior.

Paypal payment! Worldwide

Thanks!
15
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
16
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.
17
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.
18
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
19
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.
20
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.
Pages: 1 [2] 3 4 ... 10