I can create characters like elves / mage?

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
User avatar
Lamkefyned
Posts: 348
Joined: Thu May 23, 2013 11:38 am
Location: Spain

I can create characters like elves / mage?

#1 Post by Lamkefyned »

I can create characters like elves / mage? Script?
If you think something is right just because everyone else believes,you're not thinking.
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: I can create characters like elves / mage?

#2 Post 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.
  • 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
User avatar
Lamkefyned
Posts: 348
Joined: Thu May 23, 2013 11:38 am
Location: Spain

Re: I can create characters like elves / mage?

#3 Post by Lamkefyned »

thanks
If you think something is right just because everyone else believes,you're not thinking.
Post Reply