Jump to content

Problem with new function


Go to solution Solved by DemoroCZ,

Recommended Posts

  • Premium

Hello,

first of all, sorry for my english...

Please can someone help me with my new function? I don't know where is the problem...

I'm C++ noob...

 

My new function (pc.pet_bonus) apply bonus when someone call pet, but just for the moment (+- 1 second)...

Function:

	int pc_pet_bonus(lua_State* L)
	{
		BYTE applyOn = static_cast<BYTE>(lua_tonumber(L, 1));
		long value = static_cast<long>(lua_tonumber(L, 2));
		long duration = static_cast<long>(lua_tonumber(L, 3));

		LPCHARACTER ch = CQuestManager::instance().GetCurrentCharacterPtr();

		if( NULL != ch )
		{
			ch->RemoveAffect(AFFECT_PET_BONUS);
			ch->AddAffect(AFFECT_PET_BONUS, aApplyInfo[applyOn].bPointType, value, AFF_NONE, duration, 0, false);
		}

		return 0;
	}

Quest:

quest pet_system begin
    state start begin
        function get_pet_info(itemVnum)
            pet_info_map = {
            --  [ITEM VNUM] MOB_VNUM, DEFAULT NAME
                [53001]     = { 34001, gameforge.pet_system._010_say ,0, apply.DEF_GRADE_BONUS, 200},
                [53002]     = { 34002, gameforge.pet_system._020_say ,0, apply.DEF_GRADE_BONUS, 200},
				[53003]     = { 34003, gameforge.pet_system._040_say ,0, apply.DEF_GRADE_BONUS, 200},
				[53005]     = { 34004, gameforge.pet_system._050_say, 1, apply.DEF_GRADE_BONUS, 200},
				[53006]     = { 34009, gameforge.pet_system._050_say, 1, apply.DEF_GRADE_BONUS, 200},
                [53010]     = { 34008, gameforge.pet_system._060_say, 0, apply.DEF_GRADE_BONUS, 200},
                [53011]     = { 34007, gameforge.pet_system._070_say, 0, apply.DEF_GRADE_BONUS, 200},
                [53012]     = { 34005, gameforge.pet_system._080_say, 0, apply.DEF_GRADE_BONUS, 200},
                [53013]     = { 34006, gameforge.pet_system._090_say, 0, apply.DEF_GRADE_BONUS, 200},
                [53007]     = { 34010, gameforge.pet_system._100_say, 0, apply.DEF_GRADE_BONUS, 200},
                [53008]     = { 34011, gameforge.pet_system._110_say, 0, apply.DEF_GRADE_BONUS, 200},
                [53009]     = { 34012, gameforge.pet_system._120_say, 0, apply.DEF_GRADE_BONUS, 200},
                -- GF specials
                [38200]     = { 34006, gameforge.pet_system._090_say, 0, apply.DEF_GRADE_BONUS, 200},
                [38201]     = { 34006, gameforge.pet_system._090_say, 0, apply.DEF_GRADE_BONUS, 200},
				[53014]     = { 34013, gameforge.pet_system._130_say, 0, apply.DEF_GRADE_BONUS, 200},
				[53015]     = { 34014, gameforge.pet_system._140_say, 0, apply.DEF_GRADE_BONUS, 200},
				[53016]     = { 34015, gameforge.pet_system._150_say, 0, apply.DEF_GRADE_BONUS, 200},
				[53017]     = { 34016, gameforge.pet_system._160_say, 0, apply.DEF_GRADE_BONUS, 200},
            }

            itemVnum = tonumber(itemVnum)

            return pet_info_map[itemVnum]
        end
		function get_spawn_effect_file(idx)
			effect_table = {
				[0] = nil,
				[1] = "d:ymir workeffectetcappear_dienpc2_appear.mse",
			}
			return effect_table [idx]
		end
        when 38200.use or 38201.use or 53007.use or 53013.use or 53012.use or 53011.use or 53010.use or 53006.use  or 53005.use or 53002.use or 53001.use or 53003.use or 53008.use or 53009.use or
			 53014.use or 53015.use  or 53016.use or 53017.use begin
            local pet_info = pet_system.get_pet_info(item.vnum)

            if null != pet_info then

                local mobVnum = pet_info[1]
                local petName = pet_info[2]
				local spawn_effect_file_name = pet_system.get_spawn_effect_file(pet_info[3])
				local bonus_type = pet_system.get_spawn_effect_file(pet_info[4])
				local bonus_value = pet_system.get_spawn_effect_file(pet_info[5])
				
                if true == pet.is_summon(mobVnum) then
					if spawn_effect_file_name != nil then
						pet.spawn_effect (mobVnum, spawn_effect_file_name)
					end
                    pet.unsummon(mobVnum)
					pc.pet_bonus(apply.DEF_GRADE_BONUS,100,14400)
                else
                    if pet.count_summoned() < 1 then
                        pet.summon(mobVnum, petName, false)
						pc.pet_bonus(apply.DEF_GRADE_BONUS,100,14400)
                    else
                        syschat(gameforge.pet_system._030_chat)
                    end
					if spawn_effect_file_name != nil then
						pet.spawn_effect (mobVnum, spawn_effect_file_name)
					end
                end -- if pet.is_summon
            end  -- if null != pet_info
        end -- when
    end -- state
end -- quest

Thanks :)

 

Link to comment
Share on other sites

  • Replies 10
  • Created
  • Last Reply

Top Posters In This Topic

  • Premium

What errors do you have?

Nothing about affects or pc.pet_bonus (custom function)..

SYSERR: Oct 11 20:23:25 :: ChildLoop: AsyncSQL: query failed: Column count doesn't match value count at row 1 (query: INSERT DELAYED INTO money_log VALUES (NOW(), 7, 101, 8) errno: 1136)
SYSERR: Oct 11 23:16:23 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:16:23 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:16:24 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:16:24 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:16:25 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:16:25 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:16:30 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:16:31 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:16:31 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:31 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:32 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:32 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:33 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:33 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:34 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:38 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:38 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:38 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:39 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:39 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:40 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:40 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:41 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:41 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:42 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:42 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:45 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:45 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:46 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:46 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:47 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:47 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:48 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:48 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:49 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:49 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:17:50 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:18:33 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:18:33 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:18:34 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:18:34 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:18:35 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:18:35 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:18:36 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:18:36 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:13 :: Click: CQuestManager::Click(pid=59845, target_npc_name=[GA]Demoro - Feuerphönix ) - NOT EXIST NPC RACE VNUM[34001]
SYSERR: Oct 11 23:29:14 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:15 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:16 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:16 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:17 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:17 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:17 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:18 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:18 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:19 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:19 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:20 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:21 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:21 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:22 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:23 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:23 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:29:24 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:45:33 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
SYSERR: Oct 11 23:47:54 :: pid_init: 
Start of pid: 1096

SYSERR: Oct 11 23:47:54 :: socket_connect: HOST localhost:15000, could not connect.
SYSERR: Oct 11 23:47:55 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_sg1.dat
SYSERR: Oct 11 23:47:55 :: ChildLoop: AsyncSQL: query failed: Table 'log.invalid_server_log' doesn't exist (query: INSERT INTO invalid_server_log(locale_type, log_date, ip, revision) VALUES(6, NOW(), '25.216.159.100', 40250) errno: 1146)
SYSERR: Oct 11 23:48:45 :: CheckDragonSoulExtTables: In ąé·ćĽ® group of DragonSoulExtTables, ByProduct(30270) of Grade grade_normal is not exist.
SYSERR: Oct 11 23:48:45 :: ReadDragonSoulTableFile: DragonSoul table Check failed.
SYSERR: Oct 11 23:48:45 :: Boot: cannot load DragonSoulTable: locale/germany/dragon_soul_table.txt
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 41
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 21
SYSERR: Oct 11 23:48:45 :: ForAttrRegionFreeAngle: SECTREE_MANAGER::ForAttrRegion - Unhandled exception. MapIndex: 1
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: zombie_bigboss2 have not motlist.txt vnum(2598) folder(zombie_bigboss2)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: zombie_bigboss2 have not motlist.txt vnum(2598) folder(zombie_bigboss2)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: zombie_bigboss2 have not motlist.txt vnum(2598) folder(zombie_bigboss2)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: zombie_bigboss2 have not motlist.txt vnum(2598) folder(zombie_bigboss2)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: zombie_bigboss2 have not motlist.txt vnum(2598) folder(zombie_bigboss2)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_argus have not motlist.txt vnum(2623) folder(troll_argus)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_argus have not motlist.txt vnum(2623) folder(troll_argus)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_argus have not motlist.txt vnum(2623) folder(troll_argus)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_mage have not motlist.txt vnum(2624) folder(troll_mage)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_mage have not motlist.txt vnum(2624) folder(troll_mage)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_mage have not motlist.txt vnum(2624) folder(troll_mage)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_commander have not motlist.txt vnum(2625) folder(troll_commander)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_commander have not motlist.txt vnum(2625) folder(troll_commander)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_commander have not motlist.txt vnum(2625) folder(troll_commander)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_commander have not motlist.txt vnum(2625) folder(troll_commander)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_warrior have not motlist.txt vnum(2626) folder(troll_warrior)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_warrior have not motlist.txt vnum(2626) folder(troll_warrior)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: troll_warrior have not motlist.txt vnum(2626) folder(troll_warrior)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_commander have not motlist.txt vnum(2630) folder(naga_commander)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_commander have not motlist.txt vnum(2630) folder(naga_commander)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_commander have not motlist.txt vnum(2630) folder(naga_commander)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_mage have not motlist.txt vnum(2631) folder(naga_mage)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_mage have not motlist.txt vnum(2631) folder(naga_mage)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_mage have not motlist.txt vnum(2631) folder(naga_mage)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_soldier have not motlist.txt vnum(2632) folder(naga_soldier)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_soldier have not motlist.txt vnum(2632) folder(naga_soldier)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_soldier have not motlist.txt vnum(2632) folder(naga_soldier)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_warrior have not motlist.txt vnum(2633) folder(naga_warrior)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_warrior have not motlist.txt vnum(2633) folder(naga_warrior)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: naga_warrior have not motlist.txt vnum(2633) folder(naga_warrior)
SYSERR: Oct 11 23:48:46 :: LoadSkillMotion: Motion: Skill exist but no motion data for index 0 mob 3591 skill 256
SYSERR: Oct 11 23:48:46 :: LoadSkillMotion: Motion: Skill exist but no motion data for index 1 mob 3591 skill 257
SYSERR: Oct 11 23:48:46 :: LoadSkillMotion: Motion: Skill exist but no motion data for index 0 mob 3596 skill 256
SYSERR: Oct 11 23:48:46 :: LoadSkillMotion: Motion: Skill exist but no motion data for index 1 mob 3596 skill 257
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: crustacean_soldie have not motlist.txt vnum(3601) folder(crustacean_soldie)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: crustacean_soldie have not motlist.txt vnum(3601) folder(crustacean_soldie)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: crustacean_soldie have not motlist.txt vnum(3601) folder(crustacean_soldie)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: ent_boss3
 have not motlist.txt vnum(3903) folder(ent_boss3
)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: ent_boss3
 have not motlist.txt vnum(3903) folder(ent_boss3
)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: ent_boss3
 have not motlist.txt vnum(3903) folder(ent_boss3
)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: ent_boss3
 have not motlist.txt vnum(3903) folder(ent_boss3
)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: ent_boss3
 have not motlist.txt vnum(3903) folder(ent_boss3
)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: earth_elemental have not motlist.txt vnum(4001) folder(earth_elemental)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: earth_elemental have not motlist.txt vnum(4001) folder(earth_elemental)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: earth_elemental have not motlist.txt vnum(4001) folder(earth_elemental)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: earth_elemental have not motlist.txt vnum(4001) folder(earth_elemental)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: earth_elemental have not motlist.txt vnum(4001) folder(earth_elemental)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: crystal_giant have not motlist.txt vnum(4002) folder(crystal_giant)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: crystal_giant have not motlist.txt vnum(4002) folder(crystal_giant)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: crystal_giant have not motlist.txt vnum(4002) folder(crystal_giant)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: crystal_giant have not motlist.txt vnum(4002) folder(crystal_giant)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: crystal_giant have not motlist.txt vnum(4002) folder(crystal_giant)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: orc_lord_zombie have not motlist.txt vnum(4003) folder(orc_lord_zombie)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: orc_lord_zombie have not motlist.txt vnum(4003) folder(orc_lord_zombie)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: orc_lord_zombie have not motlist.txt vnum(4003) folder(orc_lord_zombie)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: orc_lord_zombie have not motlist.txt vnum(4003) folder(orc_lord_zombie)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: orc_lord_zombie have not motlist.txt vnum(4003) folder(orc_lord_zombie)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: dark_master have not motlist.txt vnum(4004) folder(dark_master)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: dark_master have not motlist.txt vnum(4004) folder(dark_master)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: dark_master have not motlist.txt vnum(4004) folder(dark_master)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: dark_master have not motlist.txt vnum(4004) folder(dark_master)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: dark_master have not motlist.txt vnum(4004) folder(dark_master)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: twin_golem have not motlist.txt vnum(4005) folder(twin_golem)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: twin_golem have not motlist.txt vnum(4005) folder(twin_golem)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: twin_golem have not motlist.txt vnum(4005) folder(twin_golem)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: twin_golem have not motlist.txt vnum(4005) folder(twin_golem)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: twin_golem have not motlist.txt vnum(4005) folder(twin_golem)
SYSERR: Oct 11 23:48:46 :: LoadMotion: cannot find accumulation data in file 'data/monster/archane/run.msa'
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: lion have not motlist.txt vnum(20147) folder(lion)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: lion have not motlist.txt vnum(20147) folder(lion)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: lion have not motlist.txt vnum(20147) folder(lion)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: neralex have not motlist.txt vnum(21579) folder(neralex)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: neralex have not motlist.txt vnum(21579) folder(neralex)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: neralex have not motlist.txt vnum(21579) folder(neralex)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: neralex have not motlist.txt vnum(21580) folder(neralex)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: neralex have not motlist.txt vnum(21580) folder(neralex)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: neralex have not motlist.txt vnum(21580) folder(neralex)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: neralex have not motlist.txt vnum(21581) folder(neralex)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: neralex have not motlist.txt vnum(21581) folder(neralex)
SYSERR: Oct 11 23:48:46 :: GetMotionFileName: Motion: neralex have not motlist.txt vnum(21581) folder(neralex)
SYSERR: Oct 11 23:48:46 :: heart_idle: losing 34 seconds. (lag occured)
SYSERR: Oct 11 23:48:48 :: GetServerLocation: location error name [GA]Demoro mapindex 0 8974421 x 4654806 empire 3
SYSERR: Oct 11 23:48:48 :: GetServerLocation: location error name [GA]Demoro mapindex 0 9013928 x 46584735 empire 3
SYSERR: Oct 11 23:49:16 :: GetServerLocation: location error name [GA]Demoro mapindex 0 8974421 x 4654806 empire 3
SYSERR: Oct 11 23:49:16 :: GetServerLocation: location error name [GA]Demoro mapindex 0 9013928 x 46584735 empire 3
SYSERR: Oct 11 23:50:29 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:50:30 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:50:30 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:50:31 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:50:34 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:50:46 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:50:46 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:50:47 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:50:47 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:50:48 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:50:48 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)
SYSERR: Oct 11 23:50:50 :: GetMoveMotionSpeed: cannot find motion (name [GA]Demoro - Feuerphönix  race 34001 mode 0)

EDIT: Sorry for doublepost :(

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.