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

Deaths/kills

imback1

Unknown member
Joined
Jul 11, 2013
Messages
785
Solutions
1
Reaction score
46
Hello

i need script to show me how many times did i die and my kills :D (frags)
 
Last edited:
ur serevr hight exp or rl map? and the balance is easy just think in everything good and u will getthe way to make it balance
 
i think u need somthing like this creaturescript
Code:
function onLook(cid, thing, position, lookDistance)
    if isPlayer(thing.uid) then
        doPlayerSetSpecialDescription(thing.uid, ". \n Frags: "..math.max(0, getPlayerStorageValue(thing.uid, 20233)))
    end
    return true
end

Code:
<event type="look" name="FragsL" event="script" value="seefrags.lua"/>

login.lua
Code:
registerCreatureEvent(cid, "FragsL")
 
Last edited:
i think u need somthing like this creaturescript
Code:
function onLook(cid, thing, position, lookDistance)
    if isPlayer(thing.uid) then
        doPlayerSetSpecialDescription(thing.uid, ". \n Frags: "..math.max(0, getPlayerStorageValue(thing.uid, 20233)))
    end
    return true
end

Code:
<event type="look" name="FragsL" event="script" value="seefrags.lua"/>
doesn't work >.<

i need deaths/kills appear when i look on one like this
15noe2h.jpg
 
Last edited by a moderator:
Back
Top