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

Some requests

Rachaw

Experienced Member
Joined
Oct 17, 2009
Messages
602
Reaction score
1
Location
Tha Sweden
first of all

__every script gets 1 rep++___

second request,
undelete
--
if you got baned 3 times you get deleted, When the player use it the get undeleted.

--
third request,
new recovery key
--
player got hacked and maybe need a new req key he uses this scroll and he will get a message with the new code.

--
forth request
frag counter
--
function on use the player gets 0 frags if he has 3 or 6 he will allways get 0 on this item.
--
he might got killd by a dragon in lvl 800 he dont wanna hes friend to he looks like a retard he uses this and it disaperes.
__
Clear your death records
--
--




if u fixx all u get 3 per day. (reps)
 
Last edited:
Here is for the frags

--credits to (dont remeber) --

LUA:
function onUse(cid, item, frompos, item2, topos)
   if getCreatureSkullType(cid) == SKULL_RED then
      doCreatureSay(cid,"Your frags and skull have been removed, have fun.",TALKTYPE_ORANGE_1)
      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)            
      doCreatureSetSkullType(cid, SKULL_NONE)
      doRemoveItem(item.uid, 1)
	  doSendMagicEffect(getPlayerPosition(cid), CONST_ME_YELLOW_RINGS)
   else
      doCreatureSay(cid,"You don't have a Red Skull!!",TALKTYPE_ORANGE_1)
   end
	
     
return true
end
 
Back
Top