I can create characters like elves / mage?
- Lamkefyned
- Posts: 348
- Joined: Thu May 23, 2013 11:38 am
- Location: Spain
I can create characters like elves / mage?
I can create characters like elves / mage? Script?
If you think something is right just because everyone else believes,you're not thinking.
Re: I can create characters like elves / mage?
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.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.If you specify names here it will use them when creating new characters.
Hope that helps.
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.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"},
}Hope that helps.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
- Lamkefyned
- Posts: 348
- Joined: Thu May 23, 2013 11:38 am
- Location: Spain
Re: I can create characters like elves / mage?
thanks
If you think something is right just because everyone else believes,you're not thinking.