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

Lua Bug Zombie Event.

kleitonalan

New Member
Joined
Mar 21, 2013
Messages
289
Reaction score
3
Code:
(LuaInterface::luaDoCreateMonster) Monster with name '' not found


Code:
monsters = {'Scratchclaw', 'Propell Zombie', 'Vile Centurion', 'Mongrel Man', 'Daidalost'},

local pos = {x=xTable[math.random(#xTable)], y=yTable[math.random(#yTable)], z=7}
for i = 1, configZombieEvent.amountCreatingMonsters do
doCreateMonster(configZombieEvent.monsters[math.random(#configZombieEvent.monsters)], pos, false, false, false)

help
 
Last edited:
Which server do you use? You can try to delete the false parameters, so you only have the monster name and pos.
 
Back
Top