Username: Password:

Recent Posts

Pages: 1 2 3 [4] 5 6 ... 10
31
Request / Re: Dont step on corona floor
« Last post by zFumagalliBr on January 27, 2025, 01:44:08 am »
Can I use this function to move the character away from a certain tile?

For exemple, in boss Tocker, there are some "tiles" that after a few seconds give damage. So I´d like the bot to identify this "tile" (i believe the tile id must change when that happens) and then try to move to any direction that is available. Can I use this "colision" set up for that?

Another question? is there a way to make the bot return (output) the TileId that the char is standing on? (just like that itemid function).

Thanks a lot!!!
32
Tools / Re: [Application] *** Password Unblocker ***
« Last post by =Mindee= on December 27, 2024, 06:28:51 pm »
Updated.
33
Help Board / draw a path
« Last post by Pompaci on December 16, 2024, 08:50:12 pm »
Is it possible to chart a course with newly opened accounts?
34
Screenshots / Videos / New Login Screen is Dope Af
« Last post by Uzman on November 10, 2024, 11:15:03 pm »
 [touranus]
35
OFF-TOPIC / Re: Your favorite music.
« Last post by Uzman on November 10, 2024, 11:02:42 pm »
i=zkXA6uXYmvu2lE31
 [touranus]
36
Waypoints / Re: [REQUEST] Request for waypoints here.
« Last post by =Mindee= on November 03, 2024, 02:00:48 am »
 [ohcipsoft]
37
Waypoints / Re: [REQUEST] Request for waypoints here.
« Last post by syfqsufian on November 01, 2024, 07:09:40 pm »
 [youdontsay] where i can find waypoint script?
38
Waypoints / Re: [REQUEST] Request for waypoints here.
« Last post by Mochou on October 21, 2024, 03:38:47 pm »
Hello sr
im wanna request waypoint Flame Firepool Fabulara Island
thank you so much
39
Request / Re: change location with commands
« Last post by =Mindee= on October 07, 2024, 01:52:16 pm »
The command below is not changing the route, can anyone help?

def onReceivePrivateMessage(name, text):
    if (name not in allowedNames):
        return

    elif ("Logout" in text):
        script.Logout()

    elif ("Until" in text):
        time = text.split()[-1]
        script.LogoutUntil(time)

    elif ("Base" in text):
        script.GetWay() != to_base:
            script.StatusMessage('Back to base...')
            ChangeWay(to_base)

    elif ("Hunt" in text):
        script.GetWay() != to_hunt:
            script.StatusMessage('Back to hunt...')
            ChangeWay(to_hunt)

You have syntax errors. Forgot to put if before script.GetWay.
40
Request / change location with commands
« Last post by hazael on October 05, 2024, 07:19:12 pm »
The command below is not changing the route, can anyone help?

def onReceivePrivateMessage(name, text):
    if (name not in allowedNames):
        return

    elif ("Logout" in text):
        script.Logout()

    elif ("Until" in text):
        time = text.split()[-1]
        script.LogoutUntil(time)

    elif ("Base" in text):
        script.GetWay() != to_base:
            script.StatusMessage('Back to base...')
            ChangeWay(to_base)

    elif ("Hunt" in text):
        script.GetWay() != to_hunt:
            script.StatusMessage('Back to hunt...')
            ChangeWay(to_hunt)
Pages: 1 2 3 [4] 5 6 ... 10