Jump to content

astinasti

Inactive Member
  • Posts

    48
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by astinasti

  1. Put the number of Index in you channel and not in 99 if you put the number Index in channel 1 you can use this "dungeon" only in ch1 Inviato dal mio GT-I9300 utilizzando Tapatalk
  2. The last number... i deleted it Inviato dal mio GT-I9300 utilizzando Tapatalk
  3. I think it's wrong.. watch this : Another question , How it'work ?
  4. You must watch regen.txt or npc.txt or boss.txt in map with index 210 and delete or create that group !
  5. When i use "..ds.open_refine_window().." and put stones in the script appear this 2 error : locale_find: LOCALE_ERROR: "단계 개량에 필요한 재료가 아닙니다. locale_find: LOCALE_ERROR: "강화에 필요한 재료가 아닙니다. Sorry for english
  6. Wrong. Your item_proto decides which bonus you'll receive when you summon a pet. Are you sure ? For example 34006 아기 전갑랑 KING NPC MELEE 1 0 STUN,SLOW,CURSE,TERROR 0 dog_young1 2 0 0 0 0 0 0 120 3 1 0 0 10 4 100 100 0 2000 150 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 I can't see any Type of bonus and ecc.. But the pet's give me bonus HP and Vs.Monster
  7. You say " I want official version ... " this is Official version, whit gui is pet system whit exp ecc.. Pet's give bonus to player, your game dedice bonus (Like official)
  8. 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}, [53002] = { 34002, gameforge.pet_system._020_say ,0}, [53003] = { 34003, gameforge.pet_system._040_say ,0}, [53005] = { 34004, gameforge.pet_system._050_say, 1}, [53006] = { 34009, gameforge.pet_system._050_say, 1}, [53010] = { 34008, gameforge.pet_system._060_say, 0}, [53011] = { 34007, gameforge.pet_system._070_say, 0}, [53012] = { 34005, gameforge.pet_system._080_say, 0}, [53013] = { 34006, gameforge.pet_system._090_say, 0}, [53007] = { 34010, gameforge.pet_system._100_say, 0}, [53008] = { 34011, gameforge.pet_system._110_say, 0}, [53009] = { 34012, gameforge.pet_system._120_say, 0}, -- GF specials [38200] = { 34006, gameforge.pet_system._090_say, 0}, [38201] = { 34006, gameforge.pet_system._090_say, 0}, [53014] = { 34013, gameforge.pet_system._130_say, 0}, [53015] = { 34014, gameforge.pet_system._140_say, 0}, [53016] = { 34015, gameforge.pet_system._150_say, 0}, [53017] = { 34016, gameforge.pet_system._160_say, 0}, } 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]) 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) else if pet.count_summoned() < 1 then pet.summon(mobVnum, petName, false) 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 For transalte " gameforge.pet_system._ " into " text " use this gameforge.pet_system = {} gameforge.pet_system._010_say = " - Feuerphönix " gameforge.pet_system._020_say = " - Rentierjunges " gameforge.pet_system._030_chat = "Du kannst dein Pet gerade nicht herbeirufen. " gameforge.pet_system._040_say = " - Eisphönix " gameforge.pet_system._050_say = " - Baby-Azrael " gameforge.pet_system._060_say = " - Leonidas " gameforge.pet_system._070_say = " - Khan " gameforge.pet_system._080_say = " - Porkie " gameforge.pet_system._090_say = " - Rufus " gameforge.pet_system._100_say = " - Bambi " gameforge.pet_system._110_say = " -Knuud " gameforge.pet_system._120_say = " -Bao Bao " gameforge.pet_system._130_say = " - Dickes Henkerchen " gameforge.pet_system._140_say = " - Dickes Henkerchen (gold) " gameforge.pet_system._150_say = " - Boney " gameforge.pet_system._160_say = " - Jadephönix "
  9. When i type the code for install Mysql 5.6 : cd /usr/ports/databases/mysql56-server && make -DBATCH install The server response : ===> mysql-server-5.6.13 depends on file: /usr/local/bin/cmake - found ===> mysql-server-5.6.13 depends on shared library: mysqlclient.18 - not found ===> Verifying install for mysqlclient.18 in /usr/ports/databases/mysql56-client ===> mysql-client-5.6.13 depends on file: /usr/local/bin/cmake - found ===> Configuring for mysql-client-5.6.13 ===> Performing in-source build /bin/mkdir -p /usr/ports/databases/mysql56-client/work/mysql-5.6.13 *** [do-configure] Signal 11 Stop in /usr/ports/databases/mysql56-client. *** [lib-depends] Error code 1 Stop in /usr/ports/databases/mysql56-server. root@Metin2:/usr/ports/databases/mysql56-server #
  10. Ther'is one error: 80017.use begin local tableByVnum = { [80014] = 100, [80015] = 500, [80016] = 1000, } 80017 In tableByVnum not exist
  11. I use it, it's starter of this client : [Hidden Content] and put in my r28249
  12. When i unpack item_proto where the archiver found letter a it change it in ? the problem is if near letter à there is a " turns everything into a ? For expample : Normally : LocalizedName="Lillà" Type="5" After archiver : LocalizedName="Lill? Type="5" It's a problem And for Mob_proto, Skill_level and Skill_vnum all = 0 sorry for bad English
  13. Mount and mob did't work syserr_client : 0511 18:48:07887 :: CEffectManager::RegisterEffect - LoadScript(d:/ymir work/effect/etc/recuperation/autodrugup_red.mse) Error 0511 18:48:07887 :: CInstanceBase::RegisterEffect(eEftType=267, c_szEftAttachBone=, c_szEftName=d:/ymir work/effect/etc/recuperation/autodrugup_red.mse, isCache=1) - Error 0511 18:48:07888 :: CEffectManager::RegisterEffect - LoadScript(d:/ymir work/effect/etc/recuperation/autodrugup_blue.mse) Error 0511 18:48:07888 :: CInstanceBase::RegisterEffect(eEftType=268, c_szEftAttachBone=, c_szEftName=d:/ymir work/effect/etc/recuperation/autodrugup_blue.mse, isCache=1) - Error 0511 18:48:07888 :: CEffectManager::RegisterEffect - LoadScript(d:/ymir work/effect/etc/buff/buff_item1.mse) Error 0511 18:48:07888 :: CInstanceBase::RegisterEffect(eEftType=269, c_szEftAttachBone=, c_szEftName=d:/ymir work/effect/etc/buff/buff_item1.mse, isCache=1) - Error 0511 18:48:08014 :: CEffectManager::RegisterEffect - LoadScript(d:/ymir work/effect/hit/percent_damage1.mse) Error 0511 18:48:08014 :: CInstanceBase::RegisterEffect(eEftType=264, c_szEftAttachBone=, c_szEftName=d:/ymir work/effect/hit/percent_damage1.mse, isCache=1) - Error 0511 18:48:08015 :: CEffectManager::RegisterEffect - LoadScript(d:/ymir work/effect/hit/percent_damage2.mse) Error 0511 18:48:08015 :: CInstanceBase::RegisterEffect(eEftType=265, c_szEftAttachBone=, c_szEftName=d:/ymir work/effect/hit/percent_damage2.mse, isCache=1) - Error 0511 18:48:08015 :: CEffectManager::RegisterEffect - LoadScript(d:/ymir work/effect/hit/percent_damage3.mse) Error 0511 18:48:08015 :: CInstanceBase::RegisterEffect(eEftType=266, c_szEftAttachBone=, c_szEftName=d:/ymir work/effect/hit/percent_damage3.mse, isCache=1) - Error 0511 18:48:17103 :: GRANNY: r:/granny/rt/granny_file_info.cpp(145): File has run-time type tag of 0x8000000f, which doesn't match this version of Granny (0x80000010). Automatic conversion will be attempted. 0511 18:49:18061 :: CEffectManager::RegisterEffect - LoadScript(D:/ymir work/pc/common/effect/armor/armor-4-2-1.mse) Error 0511 18:49:18061 :: CInstanceBase::RegisterEffect(eEftType=248, c_szEftAttachBone=Bip01, c_szEftName=D:/ymir work/pc/common/effect/armor/armor-4-2-1.mse, isCache=0) - Error 0511 18:49:18062 :: CEffectManager::RegisterEffect - LoadScript(D:/ymir work/pc/common/effect/armor/armor-4-2-2.mse) Error 0511 18:49:18062 :: CInstanceBase::RegisterEffect(eEftType=249, c_szEftAttachBone=Bip01, c_szEftName=D:/ymir work/pc/common/effect/armor/armor-4-2-2.mse, isCache=0) - Error 0511 18:49:18689 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc/warrior/action/dance_6.msa) ERROR 0511 18:49:18706 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc/warrior/action/dance_6.msa) ERROR 0511 18:49:19428 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc2/warrior/action/dance_6.msa) ERROR 0511 18:49:19445 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc2/warrior/action/dance_6.msa) ERROR 0511 18:49:20334 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc/assassin/action/dance_6.msa) ERROR 0511 18:49:20352 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc/assassin/action/dance_6.msa) ERROR 0511 18:49:21081 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc2/assassin/action/dance_6.msa) ERROR 0511 18:49:21098 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc2/assassin/action/dance_6.msa) ERROR 0511 18:49:22279 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc/sura/action/dance_6.msa) ERROR 0511 18:49:22300 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc/sura/action/dance_6.msa) ERROR 0511 18:49:22877 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc2/sura/action/dance_6.msa) ERROR 0511 18:49:22895 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc2/sura/action/dance_6.msa) ERROR 0511 18:49:23318 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc/shaman/action/dance_6.msa) ERROR 0511 18:49:23335 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc/shaman/action/dance_6.msa) ERROR 0511 18:49:24334 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc2/shaman/action/dance_6.msa) ERROR 0511 18:49:24351 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc2/shaman/action/dance_6.msa) ERROR 0511 18:49:26643 :: CRaceManager::RegisterRacePath : RACE[20380] LOAD MSMFILE[d:/ymir work/npc/eojiryu/eojiryu.msm] ERROR. Will Find Another Path. 0511 18:49:26643 :: CRaceManager::RegisterRacePath : RACE[20380] LOAD MSMFILE[d:/ymir work/npc2/eojiryu/eojiryu.msm] ERROR. Will Find Another Path. 0511 18:49:26644 :: CRaceManager::RegisterRacePath : RACE[20380] LOAD MSMFILE[d:/ymir work/monster/eojiryu/eojiryu.msm] ERROR. Will Find Another Path. 0511 18:49:26645 :: CRaceManager::RegisterRacePath : RACE[20380] LOAD MSMFILE[d:/ymir work/monster2/eojiryu/eojiryu.msm] ERROR. Will Find Another Path. 0511 18:49:26645 :: CRaceManager::RegisterRacePath : RACE[20380] LOAD MSMFILE[d:/ymir work/guild/eojiryu/eojiryu.msm] ERROR 0511 18:49:26645 :: CRaceManager::GetRaceDataPointer: cannot load data by dwRaceIndex 20380 0511 18:49:26645 :: CPythonCharacterManager::CreateInstance VID[4477] Race[20380] 0511 18:49:34095 :: CRaceManager::RegisterRacePath : RACE[3001] LOAD MSMFILE[d:/ymir work/monster2/gnoll_soldier/gnoll_soldier.msm] ERROR. Will Find Another Path. 0511 18:49:34096 :: CRaceManager::RegisterRacePath : RACE[3001] LOAD MSMFILE[d:/ymir work/monster/gnoll_soldier/gnoll_soldier.msm] ERROR. Will Find Another Path. 0511 18:49:34097 :: CRaceManager::RegisterRacePath : RACE[3001] LOAD MSMFILE[d:/ymir work/npc/gnoll_soldier/gnoll_soldier.msm] ERROR. Will Find Another Path. 0511 18:49:34097 :: CRaceManager::RegisterRacePath : RACE[3001] LOAD MSMFILE[d:/ymir work/npc2/gnoll_soldier/gnoll_soldier.msm] ERROR. Will Find Another Path. 0511 18:49:34098 :: CRaceManager::RegisterRacePath : RACE[3001] LOAD MSMFILE[d:/ymir work/guild/gnoll_soldier/gnoll_soldier.msm] ERROR 0511 18:49:34098 :: CRaceManager::GetRaceDataPointer: cannot load data by dwRaceIndex 3001 0511 18:49:34098 :: CPythonCharacterManager::CreateInstance VID[54761] Race[3001] 0511 18:49:37660 :: CRaceManager::RegisterRacePath : RACE[20225] LOAD MSMFILE[d:/ymir work/npc/dinosaur/dinosaur_3.msm] ERROR. Will Find Another Path. 0511 18:49:37660 :: CRaceManager::RegisterRacePath : RACE[20225] LOAD MSMFILE[d:/ymir work/npc2/dinosaur/dinosaur_3.msm] ERROR. Will Find Another Path. 0511 18:49:37661 :: CRaceManager::RegisterRacePath : RACE[20225] LOAD MSMFILE[d:/ymir work/monster/dinosaur/dinosaur_3.msm] ERROR. Will Find Another Path. 0511 18:49:37661 :: CRaceManager::RegisterRacePath : RACE[20225] LOAD MSMFILE[d:/ymir work/monster2/dinosaur/dinosaur_3.msm] ERROR. Will Find Another Path. 0511 18:49:37662 :: CRaceManager::RegisterRacePath : RACE[20225] LOAD MSMFILE[d:/ymir work/guild/dinosaur/dinosaur_3.msm] ERROR 0511 18:49:37662 :: CRaceManager::GetRaceDataPointer: cannot load data by dwRaceIndex 20225
  14. When i run the script appear one error # cd /usr/home/game/share # python convert.py File "convert.py", line 396 180, ^ SyntaxError: invalid syntax line 396 is : addon_type = { 180,
×
×
  • 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.