• 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!

TFS, Removing Sorc, knight, Paladin and druid?

Carlle

New Member
Joined
Jul 24, 2011
Messages
54
Reaction score
0
Hello!

As the topic!

How can i easly remove the 4 vocation when creating character?


This is because i want to use rookgaard too and players cant have vocation, because then the oracle wont transfer them when selecting vocation lol :)


So how could i delete " Select vocation" Within creation, the simple way? :)


Thanks! <3:)
 
Thanks! But i did go to Config in HTTPDocs and removed the knight/druid/dorc and pala for the site, so now i just got 1 more proble.


My new problem is as following,

$config['site']['newchar_towns'][0] = array(1); [[This one makes every new character start at rookgaard! YAAAAAY i say!!]]
$config['site']['newchar_towns'][1] = array(1,2);[[ BUT after death they are going back to same rookgaard island again, instead of their hometown from oracle!]]
// sample, if all players should spawn in one city (city with ID 4): $config['site']['newchar_towns'] = array(4);


So new character position is already set!

**But death position (To the choosen hometown, Valrak/Rhyves/Jovik Etc..

So how could i change death to respawn in their currently set by "The oracle" home Town?



Thanks for you answer BTW! great help and fast answer!

//Carlle
 
Oh I thought you were talking about Account Manager in-game.
I'm sorry, I can't help you there, I don't use web application or have any good knowledge for that.

You'll have to wait for someone else to help.
 
How can i easly remove the 4 vocation when creating character?

Change:

$config['site']['newchar_vocations'][0] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample');
$config['site']['newchar_vocations'][1] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample');


For:


$config['site']['newchar_vocations'][0] = array(0 => 'Rook Sample');
$config['site']['newchar_vocations'][1] = array(0 => 'Rook Sample');

So new character position is already set!

**But death position (To the choosen hometown, Valrak/Rhyves/Jovik Etc..

So how could i change death to respawn in their currently set by "The oracle" home Town?

This is not problem with acc maker, but with your oracale and town edit, just edit your town possitions on map editor, and now, show me your orcale script, becosue the orcale should change you TownID, or you can make it manually (example if player say 'Valrak' teleport to Valrak and set town id to Valrak).
 
Back
Top