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

The Forgotten Server v0.3 alpha 4

Status
Not open for further replies.
After testing now everything looks ok, except I'll got some minor problems when i'm starting the server with my own map, actions
Code:
[10/11/2008 00:07:02] [Warning - Weapons::registerEvent] Duplicate registered item with id: 7451
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 1873
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 1874
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 1875
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 1876
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2096
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2097
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2086
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2087
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2088
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2089
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2090
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2091
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2092
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 6123
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2442
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2553
[10/11/2008 00:07:02] [Warning - Actions::registerEvent] Duplicate registered item with id: 2088
[10/11/2008 00:07:03] [Warning - Actions::registerEvent] Duplicate registered item with id: 2089
[10/11/2008 00:07:03] [Warning - Actions::registerEvent] Duplicate registered item with id: 2091
[10/11/2008 00:07:03] [Warning - Actions::registerEvent] Duplicate registered item with uniqueid: 10056
[10/11/2008 00:07:03] [Warning - Actions::registerEvent] Duplicate registered item with id: 1223
[10/11/2008 00:07:03] [Warning - Actions::registerEvent] Duplicate registered item with uniqueid: 10543

I've used this action folder and everything on 0.2 and no errors, and i havnt changed anything since that.

Also when trying to do some quest I'll get this bug
Code:
[10/11/2008 01:15:37] data/actions/scripts/quests/quests.lua:4: attempt to call global 'getItemWeight' (a nil value)
[10/11/2008 01:15:37] stack traceback:
[10/11/2008 01:15:37] 	data/actions/scripts/quests/quests.lua:4: in function <data/actions/scripts/quests/quests.lua:2>

And question; is /n ITEMNAME removed? doesn't work atleast.


For sure, this has absolutely nothing to do with this awesome release, i'll just think that my actions has to be updated. May someone help me?

Nice release!


Bugs found;
- When doing /a NUMBERcommand, there is a small error with the poff (Like a player log out). You're poff is comming at the same time as the teleport thing is coming (like a player log in). Like you write /a 2 you'll poff and teleport at the same time in the 2sqm infront of you. Not a serious bug tho.
Sorry, but i'm bad describing

Kind regards,
Sagitta

replace getItemWeight by getItemWeightById movements errors u have somthing duplicate in movement.xml like
Code:
	<movevent event="DeEquip" itemid="8904" slot="right-hand" function="onDeEquipItem"/>
Code:
	<movevent event="DeEquip" itemid="8904" slot="right-hand" function="onDeEquipItem"/>
try to find somthing like that but not the same like here in ur movements.xml
 
pretty nice release, but I cant understand why the npc trade system ain't fixed yet.
I mean its one of the most known/should be fixed bugs on 0.3

for example i buy 100 potions he gives me 40 but takes the money for 100.
anyway, it seems alot better then 0.3, so once again. nice release.
It IS fixed.
 
... 0 credits =\

Sorry mate, I was writing the CHANGELOG asap, because I didn't have time. Don't worry, you're typed in README :p

EDIT:
Fixed teleport scripts...
- teleporthere.lua:
Code:
function onSay(cid, words, param)
	if(param == "") then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.")
		return FALSE
	end

	local target = getPlayerByNameWildcard(param)
	if(target == 0) then
		target = getCreatureByName(param)
		if(target == 0) then
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Creature not found.")
			return FALSE
		end
	end

	local tmp = getCreaturePosition(target)
	local pos = getClosestFreeTile(target, getCreaturePosition(cid))
	if(doTeleportThing(target, pos, TRUE) ~= LUA_ERROR and isPlayerGhost(target) ~= TRUE) then
		doSendMagicEffect(tmp, CONST_ME_POFF)
		doSendMagicEffect(pos, CONST_ME_TELEPORT)
	end

	return TRUE
end
- teleporttiles.lua:
Code:
function onSay(cid, words, param)
	if(param == "") then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.")
		return FALSE
	end

	local tmp = getCreaturePosition(cid)
	local pos = getClosestFreeTile(cid, getPosByDir(getCreaturePosition(cid), getPlayerLookDir(cid), tonumber(param)))
	if(doTeleportThing(cid, pos, TRUE) ~= LUA_ERROR and isPlayerGhost(cid) ~= TRUE) then
		doSendMagicEffect(tmp, CONST_ME_POFF)
		doSendMagicEffect(pos, CONST_ME_TELEPORT)
	end

	return TRUE
end
 
Last edited:
i use this monster
http://otland.net/f83/release-full-monster-pack-v3-1-a-12497/
this wrong is jump
Code:
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Black Knight
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Orc Warlord
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Witch
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Hunter
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tarantula
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:47] [Warning - NpcScript::NpcScript] Can not load script: data/npc/scripts/the orc.lua
[10/11/2008 11:40:47] cannot open data/npc/scripts/the orc.lua: No such file or directory
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Smuggler
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Rider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dog
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Hunter
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Hunter
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Hunter
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find War Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Red Butterfly
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tarantula
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tarantula
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Cave Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Cave Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Cave Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Smuggler
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Smuggler
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Carrion Worm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Carrion Worm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bug
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bug
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Minotaur
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Minotaur
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Minotaur
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bug
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Minotaur
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bug
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Beholder
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghost
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghost
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Slime
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Slime
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Slime
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Slime
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Slime
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghost
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghost
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghost
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
 
i use this monster
http://otland.net/f83/release-full-monster-pack-v3-1-a-12497/
this wrong is jump
Code:
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Black Knight
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Orc Warlord
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:46] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Witch
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Hunter
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Valkyrie
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tarantula
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bog Raider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:47] [Warning - NpcScript::NpcScript] Can not load script: data/npc/scripts/the orc.lua
[10/11/2008 11:40:47] cannot open data/npc/scripts/the orc.lua: No such file or directory
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Trainer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Smuggler
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Rider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Dog
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Pig
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Arcanist
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Elf Scout
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Cyclops
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Hunter
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Hunter
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Hunter
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Crab
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wasp
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find War Wolf
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Rabbit
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Bear
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:47] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Giant Spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Shaman
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Berserker
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Leader
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Amazon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Deer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Red Butterfly
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tarantula
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tarantula
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wolf
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Cave Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Cave Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Cave Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Smuggler
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Smuggler
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Wild Warrior
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Carrion Worm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Carrion Worm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bug
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bug
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Minotaur
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Minotaur
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Minotaur
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Thornback Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Blood Crab
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Tortoise
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bug
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Snake
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Minotaur
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc Spearman
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bug
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Orc
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rat
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Swamp Troll
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Bat

[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Beholder
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Scorpion
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Poison spider
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghoul
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Rotworm
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghost
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghost
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Slime
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Slime
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Slime
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Slime
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Slime
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon Lord
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Dragon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon Skeleton
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Necromancer
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghost
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghost
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Mummy
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Ghost
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Vampire
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon
[10/11/2008 11:40:48] [Spawn::addMonster] Can not find Demon

XD yea sorry my mistake goto monsters.xml and erase the first line
 
Elf I got question, on alpha 3 when I used /newtype 155 it was changing my outfit with full pirate addons, but now its changing without any addons. Just Pirate outfit :| Is this command work properly in alpha 4??



also:

15:45 /shutdown ;15
15:45 Command param required.
15:45 /shutdown 15
15:45 Command param required.
15:46 Me [300]: /shutdown; 15


whats wrong?


and one guy have wrote to me:


16:30 You have 1.0193055555556 unjustified frag. The amount of unjustified frags will decrease after: 1.7785674168004e-016h and 0m.

frags command works properly?
 
Last edited:
Bugs found;
- When doing /a NUMBERcommand, there is a small error with the poff (Like a player log out). You're poff is comming at the same time as the teleport thing is coming (like a player log in). Like you write /a 2 you'll poff and teleport at the same time in the 2sqm infront of you. Not a serious bug tho.
Sorry, but i'm bad describing

Try using:

Code:
function onSay(cid, words, param)
	if(param == "") then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.")
		return FALSE
	end

	local tmp = getCreaturePosition(cid)
	local pos = getClosestFreeTile(cid, getPosByDir(getCreaturePosition(cid), getPlayerLookDir(cid), tonumber(param)))
	if(doTeleportThing(cid, pos, TRUE) ~= LUA_ERROR and isPlayerGhost(cid) ~= TRUE) then
		doSendMagicEffect(pos, CONST_ME_TELEPORT)
	end

	return TRUE
end
 
What Xampp should I use for this version?
Maybe a link to the exact one or the name as theres alot to choose from.
thankyou for anyone that can help me
 
About the spells, runes, fluids, weapons, shields, etc; are they configured same as the real tibia? Or I still have to work on it to make it work similar as the real tibia? Thanks.
 
Oooo Great !
I'll setup new servers using this version on wednesday !
Thank you very much !!
 
The !y command you say You need to type a color
i've tried
!y 100
!y "100
!y "100"
!y /100
!y white
Still dont work =/ how should i type it`?

And in Alpha 3 wasnt it a command that changed the atk on the weapon?
Whats that command i cant find it in talkactions.cml
 
Status
Not open for further replies.
Back
Top