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

How to clean frags ? :s

If you want to clean everyone's frags use this:

Code:
UPDATE `players` SET `redskulltime`=0;

If you want a script which can clean frags of one player you should look in Creaturesctipts section then.
 
PHP:
UPDATE `players` SET `redskulltime`=0;

need the column in 0.3.5 (crying damson)
sorry for my bad english
 
Last edited:
PHP:
db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` IN (SELECT `kill_id` FROM `player_killers` WHERE `player_id` = " .. getPlayerGUID(cid) .. ")")
doPlayerSetSkullEnd(cid, 0, SKULL_RED)

Rep++ me
 
Back
Top