• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

New Character Vocations Promoted !

Saint Spear

Veteran OT User
Joined
Jun 22, 2016
Messages
1,547
Solutions
18
Reaction score
379
How I can change that when someone create character he automatically get Master sorcerer or Elite Knight , or Elder Druid or Royal paladin , I want to be like normal sorcerer knight druid paladin when character has been made.. also in config.lua I put there false on free premium :] checked few times vocations.xml and config.lua and I dont really know on which part of folder this exist . Reegards !
 
Solution
X
How I can change that when someone create character he automatically get Master sorcerer or Elite Knight , or Elder Druid or Royal paladin , I want to be like normal sorcerer knight druid paladin when character has been made.. also in config.lua I put there false on free premium :] checked few times vocations.xml and config.lua and I dont really know on which part of folder this exist . Reegards !
data/xml/vocations.xml
-- change it so that premium isn't required for promotion on those classes.

data/creaturescripts/scripts/login.lua
-- in the initial login of the character, promote the character
-- doPlayerSetPromotionLevel(cid, 1)

config.lua
-- promotion requires premium = false
-- you could do this instead of changing...
How I can change that when someone create character he automatically get Master sorcerer or Elite Knight , or Elder Druid or Royal paladin , I want to be like normal sorcerer knight druid paladin when character has been made.. also in config.lua I put there false on free premium :] checked few times vocations.xml and config.lua and I dont really know on which part of folder this exist . Reegards !
data/xml/vocations.xml
-- change it so that premium isn't required for promotion on those classes.

data/creaturescripts/scripts/login.lua
-- in the initial login of the character, promote the character
-- doPlayerSetPromotionLevel(cid, 1)

config.lua
-- promotion requires premium = false
-- you could do this instead of changing vocations.xml if your server is vanilla
-- might be "premiumForPromotion = false" -- I don't have a server to check

----------
-- Or you could literally change the name of the default vocations.. and delete the promotions? Idk what your end goal is though.
 
Solution
Back
Top