Character Select / Creator

yes working on isro server
what error you get ?

because it does not select characters, DC becomes

[23:41:49] Can not find chars LvL 40 or above
Try to login a character

[23:41:51] SelectCharacter: The_WaR_L0RD
it does not delete and selects 40 + characters.

selam bana bir konuda yardımcı olabilirmisiniz phbotta pyhton nasıl calıstırabilirim

delirus help me pyhton phbot

yasin kardsm bana bi yardmcı olurmusun phbot pytonda

would you have any videos showing how to use the auto graduate system?

Hi everyone!

Since @JellyBitz 's plugin doesn’t select characters, I’m doing the selection with this plugin. But it seems to coincide. So I have to add a wait time to this plugin. Maybe my problem is solved by doing this?

But my effort was not enough. I’ve tried it in two different ways. Where is the error with these edits?

1.

from phBot import *
from time import sleep

def character_listing(args):
    for name in args:
        if not name.startswith('*'):
            sleep(10)
            log('Selecting %s' % name)
            select_character(name)
            break
    return 0

log('[%s] Loaded' % __name__)

2.

from phBot import *
import time

def character_listing(args):
    for name in args:
        if not name.startswith('*'):
            time.sleep(10)
            log('Selecting %s' % name)
            select_character(name)
            break
    return 0

log('[%s] Loaded' % __name__)

Thanks.

try to use

from threading import Timer
or
import threading 

and for sleep also u can use this too

Timer(2.0,select_character(name)).start()

1 Like

Thanks but again there was an error during the load.

this not working?

def character_listing(args):
    global create

    if len(args) == 0:
        create = True
    else:
        for name in args:
            if not name.startswith('*'):
                log('Selecting %s' % name)
                select_character(name)
                break
    return 0
from phBot import *
from threading import Timer

def character_listing(args):
    for name in args:
        if not name.startswith('*'):
            Timer(15.0,log('Selecting %s' % name))
            Timer(5.0,select_character(name))
            break
    return 0

log('[%s] Loaded' % __name__)

This way the loading is successful.
But I’m not sure if the plugin is waiting.

I want some waiting time. Because when creating xAcademy characters, I think it conflicts with the plugin. An error code such as “Failed connect to server. (S1026)” appears on the character selection screen.

Hello Friend. I have a problem just like the one you were having at the auto academy. with the following error. [00:31:50] 1) KahRiWanVik Lv.41 ()
[00:31:50] 2) RanMinWiJe Lv.41 ()
[00:31:55] Plugin: Checking nickname [386869555666]
[00:31:55] Character: Cannot enter the game - server error or character name problem [1026]
[00:31:55] Plugin: Checking nickname [869481991826]
She is graduating normal. The error appears after graduating the first char of the account. he can’t create a new one and log in

can you help ???

Hi
Can anyone help me?

I need to have the plugins do character CROSSBOW or CLERIC instead of DAGGER

Can this be done?

And what is the way to do that

Create the character by injecting

    weapon = get_item_string('ITEM_EU_DAGGER_01_A_DEF')['model']

    weapon = get_item_string('ITEM_EU_**CROSSBOW**_01_A_DEF')['model']

You need to get a SQLite browser to look in the database the bot creates then use the correct server name for the item.

This is difficult for me, as I am not a programmer. Thanks for your response, brother Ryan :frowning:

when i press reload on bot , nothing shows or adds to plugins ? what to do?

did you add the plugin file to the plugins folder?

yeah its working now , it shouldnt show anything in plugins once you load it , it just creates random char name and it worked fine :slight_smile:

1 Like

Hi , I don’t want to create a random name, how can I arrange it ?