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

Request: Special Amulet for VIP

therrax

Member
Joined
Jul 12, 2012
Messages
262
Solutions
1
Reaction score
11
Hello.

I am using TFS 0.3.7 [8.6]

Could someone write code for special amulet?

Amulet specification:

- You can wear amulet in amulet slot only if you are vip, else it will not work.
(my vip system is for account not for each player, table 'accounts' in column 'vipdays')
- While you die you don't lose equipment, experience or skills, only this amulet.

Greets :)
 
just edit one movement file and add something like
if getPlayerStorageValue(cid, VIP__STORAGE) < 0 then return false end
 
Back
Top