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

Account manager

Coca Cola

New Member
Joined
Apr 10, 2010
Messages
164
Reaction score
0
i'd like to change the words of acocunt manager and he asks about what city the player wants to go ..
thank you :)
 
nah it isn't login.lua
You have to edit the sources:
player.cpp -> Search "void Player::manageAccount(const std::string &text)" that is the function you need to edit -> "case MANAGER_ACCOUNT:"
 
Ye but in that part you cannot add that the account manager asks for town, it is only that:
PHP:
        elseif(accountManager == MANAGER_NAMELOCK) then
                doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?")
        elseif(accountManager == MANAGER_ACCOUNT) then
                doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.")
        else
                doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.")
        end
 
Back
Top