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

CreatureEvent deleted thread

23:13 You advanced to military rank: Private First Class. Congratulations Private First Class!


worked!
 
Dont wana work for me i have newest trunk 9.44, You cant see wich class you are...?
 
Is it possible to set this script to NOT COUNT KILLS in PVP-Zones.. when a player does my team death match, or capture the flag they get a point towards their rank. I need it to not do this for pvp-zones/arenas. If anyone can help me edit this, that would be greatly appreciated!
 
How too make it like killing monsters instead of killing people?
 
How too make it like killing monsters instead of killing people?

Simply change this:

Lua:
function onKill(cid, target)
	if(isPlayer(target)) then
to this:
Lua:
function onKill(cid, target)
	if(isMonster(target)) then
 
Simply change this:

Lua:
function onKill(cid, target)
	if(isPlayer(target)) then
to this:
Lua:
function onKill(cid, target)
	if(isMonster(target)) then

its not working i changed it but no errors or what so ever
 
ey there is a bug in this script gods and gms also have military ranks :D i tried to fix it but im not so familiar with mods :D
Just Change This In The Script :D
Code:
if getPlayerGroupId(thing.uid) < 2 then
                        doPlayerSetSpecialDescription(thing.uid, "\n Military Rank : " .. rank.rank)
                        end
 
Back
Top