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

Error when monsters dead

Teshan

New Member
Joined
Nov 10, 2010
Messages
51
Reaction score
0
After kill monster:
70xe0w.png


In console:
a47s6f.png


I hope your answer.
 
I think its appear when use Rep System right?

Not the solution to your problem, but you can fix deleted this on our Mod:
<event type="kill" name="repMonster" event="script"><![CDATA[
domodlib('repSystem')
local monster = { --add monsters names only in lowercase
['demon'] = 3,
['behemoth'] = 4,
['hellfire fighter'] = 5,
['orshabaal'] = 10,
}
function onKill(cid, target, lastHit)
if isPlayer(cid) and isMonster(target) and monster[getCreatureName(target):lower()] then
rep.add(cid, monster[getCreatureName(target):lower()])
end
return true
end]]>
</event>
 
I delete this and when you kill pk it gives reputation and it works! the monsters die but i want when you kill anyone or kill monster you catch reputation
 
Last edited:
Back
Top