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

help in tfs 1.2 upgrad

cid is no longer used in tfs 1.2, cid has been replaced with player
https://github.com/otland/forgottenserver

Search for similar functions for instance
Code:
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Upgrade to level " .. nLevel .. " successful!")
Would be converted to
Code:
player:sendTextMessage(MESSAGE_INFO_DESCR, "Upgrade to level " .. nLevel .. " successful!")

Give it a try and see how it goes, or make a thread in the request board.
 
Back
Top