• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Some Requests .. Programs , Source , Scripts , Questions

Luz Boy

Luz Boy
Joined
Oct 25, 2013
Messages
6
Reaction score
0
Location
Egypt , Cairo
Hello OTLand ...


Requested Programs .. :- ..

1- RME Working for 9.83
2- Map Tracker for 9.83
3- Working Editor for 9.83 ( Spr / Dat / Otbm )

Requested Sources .. :- ..

1- 9.83 Source

Requested Scripts .. :- ..

1-How can i make outfit for vocation ...
like if you are vocation 1 , you will get only 1 outfit same name as vocation ...
2-Script that protect players if they under protection level
3- Need a good rebirth system depend on level stage .
4- Guild War arena script
 
you need much things you can just use the search function
-9.83 source
Protection Level is in config -_-
Code:
  protectionLevel = 1
-Rebirth
for the guild war you want a guild war with emblem or just a lua script?
--------------------------
for the remere.
the only way is to download the source and make it compatible with 9.8

----------
Last Thing.Use the fucking Google it is good for health
 
First thanks for replay ...
Second i don't mean level protection is to protect
i'm sorry i don't explain but i mean if you don't have required level or rebirth and u died u won't lose any
and u can't attack players too

for X. if player has less than 5 rebirth no one can kill him and he can't kill anyone


Third about War ...
i need guild war :D
like alot of guilds join the war and who destroy the Pole
win a reward

each player win a reward like points
and if someone make 2 players on 1 account and they are on guild
he will take reward per account not character
 
for the first request
you can use this function:
Code:
function onAttack(cid, target)
        if ----Fill this part with that you want -- then
        doPlayerSendCancel(cid, "You Can't Attack This Player")
        doSendMagicEffect(getThingPos(cid), 2)
        end
        return false
        end
The Protection One
Code:
function onAttack(cid, target)
local level = 50
        if getPlayerLevel(cid) < 50 then
        doPlayerSendCancel(cid, "You Can't Attack This Player")
        doSendMagicEffect(getThingPos(cid), 2)
        end
        return false
        end

and you need to add ondeath too


add my skype Evronium Fellow
 
Last edited:
Back
Top