Username: Password:

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - MikeOwh

Pages: [1] 2 3 ... 11
1
Share / Re: quest doratia+orthoma+hunterra+change wp149
« on: August 20, 2023, 12:18:20 AM »
En 2020 hice un script de Hunterra, Doratia y Gorgoros (código abierto) quizás esté en el grupo de Discord.

2
Single check:
Code: [Select]
locations = [(11111, 22222, 3), (11111, 22222, 3)]

def onChangeLocation(x, y, z):
    loc = (x, y, z)

    if (loc == locations[0]):
        pass

    elif (loc == locations[1]):
        pass


Multiple check:
Code: [Select]
locations = [(11111, 22222, 3), (11111, 22222, 3)]

def onChangeLocation(x, y, z):
    loc = (x, y, z)

    if (loc in locations):
        pass

3
Request / Re: [Request] Script flame ibexigen in fabulara
« on: June 19, 2023, 11:19:42 PM »
Hello Andieri.

What does the script have to do?

4
Useful Parts / [Share] Player Control.
« on: June 10, 2023, 01:54:30 AM »
Send orders to your BOT characters through the TibiaME application.

Set allowed names:
Set in the variable "allowedNames" the character name with whom you will communicate.

Send orders:
 - Disconnect the character permanently: "Logout".
 - Disconnect character until the desired time: "Until hh:mm".
 - Get current statistics: "Statistics".

5
Bug Reports / Scripting Bugs
« on: May 12, 2023, 12:57:39 AM »
EVENTS:
- script.GetEquipedSkillName() always returns none. ..... Fixed

6
General Discussions / Re: Ideas for future versions.
« on: March 02, 2023, 11:08:35 PM »
BOT CONFIG:
 - Add a 1s delay on switch weapon (only from non-main to main).
 - Add exceptions in "Switch when mob HP bellow %".

SCRIPTING:
- Event when SetRegVar() and SetCharRegVar() methods are executed. .... onSetCharRegVar() / onSetRegVar()
- Method to return null if no skill is equipped. ......................................... script.GetEquipedSkillName()
- Method to toggle enable/disable summon pet. ...................................... script.TogglePet()
- Method to get the item count in backpack, inventory, and depotmail. ....... script.GetItemsCountEx()

7
General Discussions / Re: Ideas for future versions.
« on: November 23, 2022, 05:44:25 PM »
Could you update LoadFileEx() to run onScriptActivation() when you use it?

8
General Discussions / Re: Weapon tabs
« on: September 23, 2022, 08:03:09 PM »
This script switches weapons when the mob's HP drops below the specified value. If you try to hunt low HP mobs I advise you to set the weapon change to 99%, that way only the first hit will be given with the 149 weapon. If despite that it continues to consume “too many” points send me a video to see how we can solve your problem.

9
General Discussions / Re: Weapon tabs
« on: September 18, 2022, 06:25:48 PM »
Increase the percentage or even prevent him from making the change if a certain ability is activated.
Anyway, check again that “Weapon feature” BOT config is fully disabled.

10
General Discussions / Re: Weapon tabs
« on: September 18, 2022, 09:37:44 AM »
I am currently testing in the Darktaur area, they are pretty weak mobs that easily hit +1000 damage. I have killed 100 and the weapon has only consumed 5 points.
These points have not been consumed by a quick change of weapon, it have been consumed because I have set a weapon change to 50% and as I said before +1000 hits of damage are easily reached.

Remember that you can't use the "Script + BOT Config", that's probably what's screwing you up.

11
General Discussions / Re: Weapon tabs
« on: September 18, 2022, 08:21:11 AM »
But have you test it? It barely reduces the points of the weapon.
In the BOT settings, in Weapon tab you will find the weapon switching feature, this not intended to avoid consuming points. Instead this script is focused on it.

12
General Discussions / Re: Weapon tabs
« on: September 18, 2022, 12:16:15 AM »

13
General Discussions / Re: Dummy client
« on: September 15, 2022, 09:55:47 PM »
Another question i wanna ask is about license that cost 70eur. Is the license lifetime? Except for scripting will expired, right?

Yes, for €70.00 EUR, you will get a permanent license with 45 tabs and 3 free months of Scripting-Access.
You will then need to add more months of Scripting-Access here: https://mindee-bot.com/donations/

14
General Discussions / Re: Ideas for future versions.
« on: June 19, 2022, 10:25:52 PM »
Function to load a .bot file but with some additional settings.

script.LoadFile('path', waypoints(True/False), script(True/False), settings(True/False))

15
Share / Re: [Share] Low stamina (Safe zone).
« on: January 19, 2022, 12:06:35 AM »

Updated!!
 - I forgot that it takes twice as long to recharge stamina.

Pages: [1] 2 3 ... 11