Auto character create

How can i make auto create character ?

Turkish: Otomatik karakter oluşturmayı nasıl yapabilirim beyler ?

1 Like

This one creates a char with a random (stupid) name for your academy or whatever.
You want to specify a name for the new char?

yes i want specify name for a new chars for manager setting i want it for arena coin too

and how i can use this ?

This plugin can be used to select the first character that appears in the listing. This plugin will not function until 21.2.1 or 16.1.6.

from phBot import *

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

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