• 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 1.X+ creaturescript to not droploot under level 50

darknelson

Member
Joined
Jun 19, 2011
Messages
190
Solutions
1
Reaction score
15
im trying to make a script, that when u dies if u are under level 50, dont drop loot please help me bros
 
Last edited:
Solution
data/creaturescripts/scripts/droploot.lua

add a check in here at the top that checks the player level
Lua:
if player:getLevel() < 50 then
    return true
end
data/creaturescripts/scripts/droploot.lua

add a check in here at the top that checks the player level
Lua:
if player:getLevel() < 50 then
    return true
end
 
Solution
Back
Top