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

Hey am asking for awsome 2 scripts

Calon

Experienced Member
Joined
Feb 6, 2009
Messages
1,070
Reaction score
21
hey otlanders
I'm asking for 2 scripts
first one is for teleport to Dp
when some player haven't PZ and want to back dp just say !dp

second one is auto remove embty bps when say !rbp

Rep+_ directly
 
If i put my time in some work for another person, then give it for free to him.

I think i deserve reputation, or atleast a thanks.
I just hate people who don't gives a fuck about others and just care about themselves if you know what i mean.

I just think it's rude to ignore someone who make something to em.
Yeah I get it, I think you did a great job :thumbup:
 
Lua:
local pos = {x=32501, y=32358, z=10} --Depot position
 function onSay(cid, words, param)
    if isPlayerPzLocked(cid) == TRUE then
	doPlayerSendTextMessage(cid,22,"You are in combat!")
      doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
    else
		doTeleportThing(cid, pos)
		doSendMagicEffect(pos,30)
   end
return TRUE
end
 
Back
Top