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

[Request] Frag script.. read

skittles

New Member
Joined
Oct 13, 2007
Messages
265
Reaction score
0
Hey ive searched around for hours now trying tons and tons of scripts none working or even what i really want..

i want a script so that when you kill someone (pvpe) so no frag..

u get an item. JUST A REGULAR ITEM not [killed by x at level x] just the normal item.

can anyone do this please?

rep++
 
Hey ive searched around for hours now trying tons and tons of scripts none working or even what i really want..

i want a script so that when you kill someone (pvpe) so no frag..

u get an item. JUST A REGULAR ITEM not [killed by x at level x] just the normal item.

can anyone do this please?

rep++

what distro are you using?, for 0.3 i use this
PHP:
if isPlayer(mostDamageKiller) == TRUE then
			if getPlayerLevel(cid) >= 100 and (math.abs((getPlayerLevel(mostDamageKiller) - (getPlayerLevel(cid)))) <= 25) then
				doPlayerAddItem(mostDamageKiller,2363,1)
			end
		end

the 25 just is level difference u can take that out really that entire if statement if u wish :)
 
Back
Top