Page 1 of 1

I can create characters like elves / mage?

Posted: Sun Feb 23, 2014 5:47 pm
by Lamkefyned
I can create characters like elves / mage? Script?

Re: I can create characters like elves / mage?

Posted: Sun Feb 23, 2014 10:29 pm
by rock5
There are no features for creating characters from a script but there are features in fastlogin that allow you to control what is created.

In accountlogin.lua you will find 2 options.

Code: Select all

-- >>>>> SET RACE NUMBER FOR DEFAULT RACE SELECTION WHEN CREATING CHARACTERS <<<<
fastLoginDefaultRace = nil;	-- 1-HUMAN, 2-ELF, 3-DWARF or nil for random Race.
-- >>>>>>>> SET CLASS NUMBER FOR DEFAULT CLASS WHEN CREATING CHARACTERS <<<<<<<<<
fastLoginDefaultClass = nil;	-- From 1 to 6 or nil for random Class.
When you create a character it will automatically use what is set here.

Also, I assume you want to script it because you will be making temporary characters (maybe for the charges). There is also an option to specify the character names so you can set it to keep using the same names. You'll find it just under the account name and password list.

Code: Select all

-- Default names to use for each account when creating new characters.
-- It will use a random name if no default name is specified.
local CharacterCreateDefaultNames = {
-- Example:
--	Account55 = {"Alphaone","Betatwo","Capathree"},

}
If you specify names here it will use them when creating new characters.

Hope that helps.

Re: I can create characters like elves / mage?

Posted: Thu Feb 27, 2014 12:13 pm
by Lamkefyned
thanks