Hello everyone, I have a problem with a methin2 harvesting system. It happens that after I harvest some plants, after 7-8 minutes I take DC, I've tried a lot but I do not think the solution!
Quest
---- INSERT INTO `skill_proto` VALUES ('7', 0x20B1E2C7F741EBB8ED, '5', '1', '1', '0', 'HP', '-(0)', '50+140*k', '', '', '0', '', '', 'SELFONLY', '', 'NONE', '100+k*1000/6', '2', '', '', '', '', '', '0', '0', 'MELEE', '10', '0.8', '0', '400');
quest recoger_hierbas begin
state start begin
when login with pc.getqf("primero") != 1 begin
pc.setqf("primero", 1)
pc.setqf("plantas_recogidas", 0)
pc.set_skill_level(7,59)
end
when 20094.click or 20092.click with pc.getqf("primero") == 1 begin --- cambiar esto por los vnum de las setas o las hierbas
if pc.is_mount() != true then
cmdchat("Sistema_Objetos") -- Esto ejecuta la animación.
timer("Hierbas", 1) -- este timer se cambia según la animación, lo que tarde en coger la hierba xD
end
end
when Hierbas.timer begin
npc.purge()
pc.setqf("plantas_recogidas",pc.getqf("plantas_recogidas")+1)
chat("Felicidades, encontrastes una planta")
end
--when xxx.use or xxx.use begin --- cambiar eso por los values de los items
-- item.remove()
-- affect.add_collect(apply.MAX_HP, 500, 60*12) --500 hp 12 horas
-- affect.add_collect(apply.CRITICAL_PCT, 10, 60*12) --10% criticos 12 horas
--end
end
end
Game.py
"Sistema_Objetos" : self.__Sistema_Recoger_Objetos,
def __Sistema_Recoger_Objetos(self):
import player
import herbology
vid_mine = player.GetTargetVID()
vid2 = player.GetCharacterDistance(int(vid_mine))
if int(vid2) >=165:
self.herbology_dialog = herbology.Herbologia()
self.herbology_dialog.Open()
chat.AppendChat(chat.CHAT_TYPE_INFO, "Estás muy lejos de la planta")
else:
chat.AppendChat(chat.CHAT_TYPE_INFO, "Estás cerca de la planta")
if player.GetJob() >= 2:
player.ClickSkillSlot(10)
else:
player.ClickSkillSlot(10)
return
herbology.py
import app
import chr
import player
import time
import net
import ui
import chat
classHerbologia(ui.ScriptWindow):def __init__(self):
ui.ScriptWindow.__init__(self)self.activado = FALSE
self.sistema = FALSE
defOnUpdate(self):ifself.sistema == FALSE:self.herbologia()def herbologia(self):
vid_mine = player.GetTargetVID()
x, y, z = chr.GetPixelPosition(int(vid_mine))
distancia = player.GetCharacterDistance(int(vid_mine))
my_vid = player.GetMainCharacterIndex()ifint(distancia)>=165:
chr.MoveToDestPosition(my_vid,int(x),int(y),int(z))self.sistema = FALSE
else:
x_pl, y_pl, z_pl = chr.GetPixelPosition(int(my_vid))
chr.MoveToDestPosition(my_vid,int(x_pl),int(y_pl),int(z_pl))
chr.SetPixelPosition(int(x_pl),int(y_pl),int(z_pl))self.sistema = TRUE
ifself.activado == FALSE:self.OnMouseLeftButtonDown(vid_mine)returnself.sistema
self.Close()defOpen(self):self.Show()
vid_mine = player.GetTargetVID()
distancia = player.GetCharacterDistance(int(vid_mine))ifint(distancia)<=165:self.Close()defOnMouseLeftButtonDown(self, vid_mine):
net.SendOnClickPacket(vid_mine)self.activado = TRUE
returnself.activado
defDestroy(self):self.Hide()defClose(self):self.Hide()
playersettingmodule.py
defDefineSkillIndexDict():global NEW_678TH_SKILL_ENABLE
global SKILL_INDEX_DICT
NEW_678TH_SKILL_ENABLE = locale.IsYMIR()if NEW_678TH_SKILL_ENABLE:
SKILL_INDEX_DICT ={
JOB_WARRIOR :{1:(1,2,3,4,5,6,0,0,137,7,138,0,139,0,),2:(16,17,18,19,20,21,0,0,137,7,138,0,139,0,),"SUPPORT":(122,123,121,124,125,129,0,0,130,131,141,142,),},
JOB_ASSASSIN :{1:(31,32,33,34,35,36,0,0,137,7,138,0,139,0,140,),2:(46,47,48,49,50,51,0,0,137,7,138,0,139,0,140,),"SUPPORT":(122,123,121,124,125,129,0,0,130,131,141,142,),},
JOB_SURA :{1:(61,62,63,64,65,66,0,0,137,7,138,0,139,0,),2:(76,77,78,79,80,81,0,0,137,7,138,0,139,0,),"SUPPORT":(122,123,121,124,125,129,0,0,130,131,141,142,),},
JOB_SHAMAN :{1:(91,92,93,94,95,96,0,0,137,7,138,0,139,0,),2:(106,107,108,109,110,111,0,0,137,7,138,0,139,0,),"SUPPORT":(122,123,121,124,125,129,0,0,130,131,141,142,),},}else:
SKILL_INDEX_DICT ={
JOB_WARRIOR :{1:(1,2,3,4,5,6,0,0,137,7,138,0,139,0,),2:(16,17,18,19,20,21,0,0,137,7,138,0,139,0,),"SUPPORT":(122,123,121,124,125,129,0,0,130,131,),},
JOB_ASSASSIN :{1:(31,32,33,34,35,36,0,0,137,7,138,0,139,0,140,),2:(46,47,48,49,50,51,0,0,137,7,138,0,139,0,140,),"SUPPORT":(122,123,121,124,125,129,0,0,130,131,),},
JOB_SURA :{1:(61,62,63,64,65,66,0,0,137,7,138,0,139,0,),2:(76,77,78,79,80,81,0,0,137,7,138,0,139,0,),"SUPPORT":(122,123,121,124,125,129,0,0,130,131,),},
JOB_SHAMAN :{1:(91,92,93,94,95,96,0,0,137,7,138,0,139,0,),2:(106,107,108,109,110,111,0,0,137,7,138,0,139,0,),"SUPPORT":(122,123,121,124,125,129,0,0,130,131,),},}def __LoadGameWarriorEx(race, path):## Warrior#########################################################################################
chrmgr.SelectRace(race)## GENERAL MODESetGeneralMotions(chr.MOTION_MODE_GENERAL, path +"general/")
chrmgr.SetMotionRandomWeight(chr.MOTION_MODE_GENERAL, chr.MOTION_WAIT,0,70)
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_WAIT,"wait_1.msa",30)
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_COMBO_ATTACK_1,"attack.msa",50)
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_COMBO_ATTACK_1,"attack_1.msa",50)# Sistema de Recoger cosas del Suelofor i in xrange(skill.SKILL_EFFECT_COUNT):
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_SKILL+(i*skill.SKILL_GRADEGAP)+10,"pick_up.msa")# Sistema de Recoger cosas del Suelo Enddef __LoadGameAssassinEx(race, path):## Assassin#########################################################################################
chrmgr.SelectRace(race)## GENERAL MOTION MODESetGeneralMotions(chr.MOTION_MODE_GENERAL, path +"general/")
chrmgr.SetMotionRandomWeight(chr.MOTION_MODE_GENERAL, chr.MOTION_WAIT,0,70)
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_WAIT,"wait_1.msa",30)
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_COMBO_ATTACK_1,"attack.msa",50)
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_COMBO_ATTACK_1,"attack_1.msa",50)
chrmgr.ReserveComboAttackNew(chr.MOTION_MODE_GENERAL, COMBO_TYPE_1,1)
chrmgr.RegisterComboAttackNew(chr.MOTION_MODE_GENERAL, COMBO_TYPE_1, COMBO_INDEX_1, chr.MOTION_COMBO_ATTACK_1)# Sistema de Recoger cosas del Suelofor i in xrange(skill.SKILL_EFFECT_COUNT):
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_SKILL+(i*skill.SKILL_GRADEGAP)+10,"pick_up.msa")# Sistema de Recoger cosas del Suelo Enddef __LoadGameSuraEx(race, path):## Sura#########################################################################################
chrmgr.SelectRace(race)## GENERAL MOTION MODESetGeneralMotions(chr.MOTION_MODE_GENERAL, path +"general/")
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_COMBO_ATTACK_1,"attack.msa",50)
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_COMBO_ATTACK_1,"attack_1.msa",50)
chrmgr.ReserveComboAttackNew(chr.MOTION_MODE_GENERAL, COMBO_TYPE_1,1)
chrmgr.RegisterComboAttackNew(chr.MOTION_MODE_GENERAL, COMBO_TYPE_1, COMBO_INDEX_1, chr.MOTION_COMBO_ATTACK_1)# Sistema de Recoger cosas del Suelofor i in xrange(skill.SKILL_EFFECT_COUNT):
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_SKILL+(i*skill.SKILL_GRADEGAP)+10,"pick_up.msa")# Sistema de Recoger cosas del Suelo Enddef __LoadGameShamanEx(race, path):## Shaman#########################################################################################
chrmgr.SelectRace(race)## GENERAL MOTION MODESetGeneralMotions(chr.MOTION_MODE_GENERAL, path +"general/")
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_COMBO_ATTACK_1,"attack.msa",50)
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_COMBO_ATTACK_1,"attack_1.msa",50)
chrmgr.ReserveComboAttackNew(chr.MOTION_MODE_GENERAL, COMBO_TYPE_1,1)
chrmgr.RegisterComboAttackNew(chr.MOTION_MODE_GENERAL, COMBO_TYPE_1, COMBO_INDEX_1, chr.MOTION_COMBO_ATTACK_1)# Sistema de Recoger cosas del Suelofor i in xrange(skill.SKILL_EFFECT_COUNT):
chrmgr.RegisterCacheMotionData(chr.MOTION_MODE_GENERAL, chr.MOTION_SKILL+(i*skill.SKILL_GRADEGAP)+10,"pick_up.msa")# Sistema de Recoger cosas del Suelo End
SyslogJan3118:00:00::AddAffect[GM]Spectral type 510 apply 4020 flag 0 duration 600Jan3118:00:01::AddAffect[GM]Spectral type 510 apply 4120 flag 0 duration 600Jan3118:00:01::AddAffect[GM]Spectral type 200 apply 1960 flag 12 duration 1800Jan3118:00:02::AddAffect[GM]Spectral type 510 apply 1720 flag 0 duration 1800Jan3118:00:03:: MOVE:[GM]Spectral trying to move too far (dist:30369252.0m)Riding(0)Jan3118:00:03:: SHOW:[GM]Spectral424738x193569x0Jan3118:00:03::in same sectree
Jan3118:00:03:: MOVE:[GM]Spectral trying to move too far (dist:30369252.0m)Riding(0)Jan3118:00:03:: SHOW:[GM]Spectral424738x193569x0Jan3118:00:03::in same sectree
Jan3118:00:03:: MOVE:[GM]Spectral trying to move too far (dist:30369252.0m)Riding(0)Jan3118:00:03:: SHOW:[GM]Spectral424738x193569x0Jan3118:00:03::in same sectree
Jan3118:00:03:: MOVE:[GM]Spectral trying to move too far (dist:30369252.0m)Riding(0)Jan3118:00:03:: SHOW:[GM]Spectral424738x193569x0Jan3118:00:03::in same sectree
Jan3118:00:03:: MOVE:[GM]Spectral trying to move too far (dist:30369252.0m)Riding(0)Jan3118:00:03:: SHOW:[GM]Spectral424738x193569x0Jan3118:00:03::in same sectree
SYSERR:Jan3118:00:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:00:16::AddAffect[GM]Spectral type 211 apply 19-30 flag 5 duration 20Jan3118:00:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)Jan3118:00:17:: COMMAND:[GM]Spectral: quit
SYSERR:Jan3118:00:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:00:22:: COMMAND:[GM]Spectral:gotoJan3118:00:22::WarpSet[GM]Spectral469300964200 current map 61 target map 1Jan3118:00:23:: DISCONNECT:[GM]Spectral(DESC::~DESC)Jan3118:00:23:: SAVE:[GM]Spectral469300x964200Jan3118:00:23:: QUEST clear timer 1Jan3118:00:23:: SYSTEM: closing socket. DESC #18Jan3118:00:23:: SYSTEM:new connection from[179.124.198.87] fd:18 handshake 2410784128 output input_len 0, ptr 0x2b48cc00Jan3118:00:24::Handshake: lower than zero -39Jan3118:00:24::Handshake: client_time 0 server_time 382337Jan3118:00:25:: LOGIN_BY_KEY: mageelvis key 906869927Jan3118:00:25::LoginSuccessJan3118:00:25:: player([GM]Spectral).job(2)Jan3118:00:25:: player().job(0)Jan3118:00:25:: player().job(0)Jan3118:00:25:: player().job(0)Jan3118:00:25:: player().job(0)Jan3118:00:25:: success to 144.217.128.231:21000Jan3118:00:25::InputDB::login_success: mageelvis
Jan3118:00:26:: player_select: login: mageelvis index:0Jan3118:00:26:: SYSTEM:new connection from[179.124.198.87] fd:19 handshake 969773372 output input_len 0, ptr 0x2b48d400Jan3118:00:26:: GM_NEW_GET_LEVEL : FIND ACCOUNT
Jan3118:00:26:: PK_MODE:[GM]Spectral3Jan3118:00:26:: PLAYER_LOAD:[GM]Spectral PREMIUM 15779232001577923200, LOGGOFF_INTERVAL 3 PTR:0x4e9ea000Jan3118:00:26:: GM_LOGIN(gmlevel=5, name=[GM]Spectral(78), pos=(469300,964200)Jan3118:00:26::InputDB: player_load [GM]Spectral469300x964200x0 LEVEL 42 MOV_SPEED 100 JOB 2 ATG 94 DFG 79GMLv5Jan3118:00:26:: ITEM_LOAD: COUNT [GM]Spectral93Jan3118:00:26:: MARK_SERVER:LoginJan3118:00:26:: QUEST_LOAD: count 10Jan3118:00:26:: QUEST clear timer 0Jan3118:00:26:: QUEST clear timer 0Jan3118:00:26:: acce_mission.__status 695801987Jan3118:00:26:: check_trans_ticket.__status 526282696Jan3118:00:26:: collect_quest_lv30.__status 695801987Jan3118:00:26:: contador_kills.__status -568853420Jan3118:00:26:: give_basic_weapon.__status -1253630478Jan3118:00:26:: mapas_vips.__status 526282696Jan3118:00:26:: recoger_hierbas.primero 1Jan3118:00:26:: spider_dungeon_2floor.__status 1290640410Jan3118:00:26:: contador_kills.moobs 70Jan3118:00:26:: recoger_hierbas.plantas_recogidas 11Jan3118:00:27::LargePacketSize5508Jan3118:00:27:: reallocating buffer to 16384, current 1024Jan3118:00:27:: MARK_SERVER:GuildMarkIDXList5515 bytes sent.Jan3118:00:27:: VERSION:[GM]Spectral1215955205 metin2client.bin
Jan3118:00:28:: MARK_SERVER:Sending blocks.(imgIdx 0 diff 0 size 10)Jan3118:00:28:: MARK_SERVER:Sending blocks.(imgIdx 1 diff 0 size 10)Jan3118:00:29:: SHOW:[GM]Spectral469300x964200x0Jan3118:00:29:: reallocating buffer to 8192, current 1024Jan3118:00:29::AddAffect[GM]Spectral type 215 apply 00 flag 28 duration 5Jan3118:00:29:: ENTERGAME:[GM]Spectral469300x964200x0179.124.198.87 map_index 1Jan3118:00:29:: HORSE STAMINA CONSUME EVENT CANCEL 0x0Jan3118:00:29:: HORSE STAMINA REGEN EVENT CREATE 0x4e9f0260Jan3118:00:29::SendLandList map 1 count 18 elem_size:432Jan3118:00:29::AddAffect[GM]Spectral type 500 apply 00 flag 0 duration 60494371Jan3118:00:29:: PREMIUM:[GM]Spectral type 060494371minJan3118:00:29::AddAffect[GM]Spectral type 501 apply 00 flag 0 duration 60494371Jan3118:00:29:: PREMIUM:[GM]Spectral type 160494371minJan3118:00:29::AddAffect[GM]Spectral type 502 apply 00 flag 0 duration 60494371Jan3118:00:29:: PREMIUM:[GM]Spectral type 260494371minJan3118:00:29::AddAffect[GM]Spectral type 503 apply 00 flag 0 duration 60494371Jan3118:00:29:: PREMIUM:[GM]Spectral type 360494371minJan3118:00:29::AddAffect[GM]Spectral type 504 apply 00 flag 0 duration 60494371Jan3118:00:29:: PREMIUM:[GM]Spectral type 460494371minJan3118:00:29::AddAffect[GM]Spectral type 505 apply 00 flag 0 duration 60494371Jan3118:00:29:: PREMIUM:[GM]Spectral type 560494371minJan3118:00:29::AddAffect[GM]Spectral type 506 apply 00 flag 0 duration 60494371Jan3118:00:29:: PREMIUM:[GM]Spectral type 660494371minJan3118:00:29:: VERSION CHECK 1215955205121595520512159552051215955205Jan3118:00:29:: DISCONNECT:[GM]Spectral(DESC::~DESC)Jan3118:00:29:: SAVE:[GM]Spectral469300x964200Jan3118:00:29:: QUEST clear timer 0Jan3118:00:29:: SYSTEM: closing socket. DESC #18Jan3118:00:29:: SYSTEM: closing socket. DESC #19Jan3118:00:41:: SYSTEM:new connection from[179.124.198.87] fd:18 handshake 417932709 output input_len 0, ptr 0x2b48d400Jan3118:00:41:: SYSTEM: closing socket. DESC #18Jan3118:00:48:: SYSTEM:new connection from[179.124.198.87] fd:18 handshake 275657873 output input_len 0, ptr 0x2b48d400Jan3118:00:49::Handshake: client_time 0 server_time 407217Jan3118:00:49:: LOGIN_BY_KEY: mageelvis key 1260748168Jan3118:00:50::LoginSuccessJan3118:00:50:: player([GM]Spectral).job(2)Jan3118:00:50:: player().job(0)Jan3118:00:50:: player().job(0)Jan3118:00:50:: player().job(0)Jan3118:00:50:: player().job(0)Jan3118:00:50:: success to 144.217.128.231:21000Jan3118:00:50::InputDB::login_success: mageelvis
Jan3118:00:50:: SYSTEM:new connection from[179.124.198.87] fd:19 handshake 4209381598 output input_len 0, ptr 0x2b48cc00Jan3118:00:51:: MARK_SERVER:LoginJan3118:00:51::LargePacketSize5508Jan3118:00:51:: reallocating buffer to 16384, current 1024Jan3118:00:51:: MARK_SERVER:GuildMarkIDXList5515 bytes sent.Jan3118:00:52:: SYSTEM: closing socket. DESC #18Jan3118:00:52:: SYSTEM:new connection from[179.124.198.87] fd:18 handshake 1268429841 output input_len 0, ptr 0x2b48d400Jan3118:00:52:: MARK_SERVER:Sending blocks.(imgIdx 0 diff 0 size 10)Jan3118:00:52:: MARK_SERVER:Sending blocks.(imgIdx 1 diff 0 size 10)Jan3118:00:52::Handshake: client_time 0 server_time 410777Jan3118:00:52:: SYSTEM: closing socket. DESC #19Jan3118:00:53:: LOGIN_BY_KEY: mageelvis key 1260748168Jan3118:00:53::LoginSuccessJan3118:00:53:: player([GM]Spectral).job(2)Jan3118:00:53:: player().job(0)Jan3118:00:53:: player().job(0)Jan3118:00:53:: player().job(0)Jan3118:00:53:: player().job(0)Jan3118:00:53:: success to 144.217.128.231:21000Jan3118:00:53::InputDB::login_success: mageelvis
Jan3118:00:54:: player_select: login: mageelvis index:0Jan3118:00:54:: GM_NEW_GET_LEVEL : FIND ACCOUNT
Jan3118:00:54:: PK_MODE:[GM]Spectral3Jan3118:00:54:: PLAYER_LOAD:[GM]Spectral PREMIUM 15779232001577923200, LOGGOFF_INTERVAL 25 PTR:0x4e475000Jan3118:00:54:: GM_LOGIN(gmlevel=5, name=[GM]Spectral(78), pos=(469300,964200)Jan3118:00:54::InputDB: player_load [GM]Spectral469300x964200x0 LEVEL 42 MOV_SPEED 100 JOB 2 ATG 94 DFG 79GMLv5Jan3118:00:54:: ITEM_LOAD: COUNT [GM]Spectral93Jan3118:00:54:: QUEST_LOAD: count 10Jan3118:00:54:: QUEST clear timer 0Jan3118:00:54:: QUEST clear timer 0Jan3118:00:54:: acce_mission.__status 695801987Jan3118:00:54:: check_trans_ticket.__status 526282696Jan3118:00:54:: collect_quest_lv30.__status 695801987Jan3118:00:54:: contador_kills.__status -568853420Jan3118:00:54:: give_basic_weapon.__status -1253630478Jan3118:00:54:: mapas_vips.__status 526282696Jan3118:00:54:: recoger_hierbas.primero 1Jan3118:00:54:: spider_dungeon_2floor.__status 1290640410Jan3118:00:54:: contador_kills.moobs 70Jan3118:00:54:: recoger_hierbas.plantas_recogidas 11Jan3118:00:55:: VERSION:[GM]Spectral1215955205 metin2client.bin
Jan3118:00:58:: GLOBAL_TIME:Jan3118:00:58 time_gap 0Jan3118:01:01:: SHOW:[GM]Spectral469300x964200x0Jan3118:01:01:: reallocating buffer to 8192, current 1024Jan3118:01:01::AddAffect[GM]Spectral type 215 apply 00 flag 28 duration 5Jan3118:01:01:: ENTERGAME:[GM]Spectral469300x964200x0179.124.198.87 map_index 1Jan3118:01:01:: HORSE STAMINA CONSUME EVENT CANCEL 0x0Jan3118:01:01:: HORSE STAMINA REGEN EVENT CREATE 0x4df49180Jan3118:01:01::SendLandList map 1 count 18 elem_size:432Jan3118:01:01::AddAffect[GM]Spectral type 500 apply 00 flag 0 duration 60494339Jan3118:01:01:: PREMIUM:[GM]Spectral type 060494339minJan3118:01:01::AddAffect[GM]Spectral type 501 apply 00 flag 0 duration 60494339Jan3118:01:01:: PREMIUM:[GM]Spectral type 160494339minJan3118:01:01::AddAffect[GM]Spectral type 502 apply 00 flag 0 duration 60494339Jan3118:01:01:: PREMIUM:[GM]Spectral type 260494339minJan3118:01:01::AddAffect[GM]Spectral type 503 apply 00 flag 0 duration 60494339Jan3118:01:01:: PREMIUM:[GM]Spectral type 360494339minJan3118:01:01::AddAffect[GM]Spectral type 504 apply 00 flag 0 duration 60494339Jan3118:01:01:: PREMIUM:[GM]Spectral type 460494339minJan3118:01:01::AddAffect[GM]Spectral type 505 apply 00 flag 0 duration 60494339Jan3118:01:01:: PREMIUM:[GM]Spectral type 560494339minJan3118:01:01::AddAffect[GM]Spectral type 506 apply 00 flag 0 duration 60494339Jan3118:01:01:: PREMIUM:[GM]Spectral type 660494339minJan3118:01:01:: VERSION CHECK 1215955205121595520512159552051215955205Jan3118:01:02:: QUEST_LOAD:Login pc 78byeventJan3118:01:02:: QUEST timer name timer1 cycle 22500 pc 78 npc 4294967295 loop?0Jan3118:01:02:: QUEST add timer 0x4e9ef7a01Jan3118:01:02::CreateTarget: target pid 78 quest 56 name __TARGET__ arg 231300Jan3118:01:02::CreateTarget: target pid 78 quest 94 name theowahdan arg 231280Jan3118:01:03:: SYSTEM:new connection from[179.124.198.87] fd:19 handshake 3654926775 output input_len 0, ptr 0x2b48cc00Jan3118:01:03::SendTargetUpdatePacket3474400x956200Jan3118:01:03::SendTargetUpdatePacket4473800x956200Jan3118:01:03:: MARK_SERVER:LoginJan3118:01:04::GuildSymbolCRC417600
SYSERR:Jan3118:01:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:01:09:: QUEST ScriptAnswer pid 78 answer 4Jan3118:01:13:: QUEST ScriptAnswer pid 78 answer 3Jan3118:01:13::WarpSet[GM]Spectral600800687400 current map 1 target map 62Jan3118:01:14:: DISCONNECT:[GM]Spectral(DESC::~DESC)Jan3118:01:14:: SAVE:[GM]Spectral600800x687400Jan3118:01:14:: QUEST clear timer 1Jan3118:01:14:: SYSTEM: closing socket. DESC #18Jan3118:01:14:: SYSTEM:new connection from[179.124.198.87] fd:18 handshake 889329989 output input_len 0, ptr 0x2b48d400Jan3118:01:14::Handshake: lower than zero -20Jan3118:01:15::Handshake: client_time 0 server_time 433177Jan3118:01:15:: LOGIN_BY_KEY: mageelvis key 1260748168Jan3118:01:16::LoginSuccessJan3118:01:16:: player([GM]Spectral).job(2)Jan3118:01:16:: player().job(0)Jan3118:01:16:: player().job(0)Jan3118:01:16:: player().job(0)Jan3118:01:16:: player().job(0)Jan3118:01:16:: success to 144.217.128.231:21000Jan3118:01:16::InputDB::login_success: mageelvis
Jan3118:01:16:: player_select: login: mageelvis index:0Jan3118:01:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)Jan3118:01:17:: GM_NEW_GET_LEVEL : FIND ACCOUNT
Jan3118:01:17:: PK_MODE:[GM]Spectral3Jan3118:01:17:: PLAYER_LOAD:[GM]Spectral PREMIUM 15779232001577923200, LOGGOFF_INTERVAL 3 PTR:0x30610000Jan3118:01:17:: GM_LOGIN(gmlevel=5, name=[GM]Spectral(78), pos=(600800,687400)Jan3118:01:17::InputDB: player_load [GM]Spectral600800x687400x0 LEVEL 42 MOV_SPEED 100 JOB 2 ATG 94 DFG 79GMLv5Jan3118:01:17:: ITEM_LOAD: COUNT [GM]Spectral93Jan3118:01:17:: QUEST_LOAD: count 10Jan3118:01:17:: QUEST clear timer 0Jan3118:01:17:: QUEST clear timer 0Jan3118:01:17:: acce_mission.__status 695801987Jan3118:01:17:: check_trans_ticket.__status 526282696Jan3118:01:17:: collect_quest_lv30.__status 695801987Jan3118:01:17:: contador_kills.__status -568853420Jan3118:01:17:: give_basic_weapon.__status -1253630478Jan3118:01:17:: mapas_vips.__status 526282696Jan3118:01:17:: recoger_hierbas.primero 1Jan3118:01:17:: spider_dungeon_2floor.__status 1290640410Jan3118:01:17:: contador_kills.moobs 70Jan3118:01:17:: recoger_hierbas.plantas_recogidas 11Jan3118:01:17:: VERSION:[GM]Spectral1215955205 metin2client.bin
Jan3118:01:18:: SHOW:[GM]Spectral600800x687400x0Jan3118:01:18::AddAffect[GM]Spectral type 215 apply 00 flag 28 duration 5Jan3118:01:18:: ENTERGAME:[GM]Spectral600800x687400x0179.124.198.87 map_index 62Jan3118:01:18:: HORSE STAMINA CONSUME EVENT CANCEL 0x0Jan3118:01:18:: HORSE STAMINA REGEN EVENT CREATE 0x4e9fa440Jan3118:01:18::SendLandList map 62 count 0 elem_size:0Jan3118:01:18::AddAffect[GM]Spectral type 500 apply 00 flag 0 duration 60494322Jan3118:01:18:: PREMIUM:[GM]Spectral type 060494322minJan3118:01:18::AddAffect[GM]Spectral type 501 apply 00 flag 0 duration 60494322Jan3118:01:18:: PREMIUM:[GM]Spectral type 160494322minJan3118:01:18::AddAffect[GM]Spectral type 502 apply 00 flag 0 duration 60494322Jan3118:01:18:: PREMIUM:[GM]Spectral type 260494322minJan3118:01:18::AddAffect[GM]Spectral type 503 apply 00 flag 0 duration 60494322Jan3118:01:18:: PREMIUM:[GM]Spectral type 360494322minJan3118:01:18::AddAffect[GM]Spectral type 504 apply 00 flag 0 duration 60494322Jan3118:01:18:: PREMIUM:[GM]Spectral type 460494322minJan3118:01:18::AddAffect[GM]Spectral type 505 apply 00 flag 0 duration 60494322Jan3118:01:18:: PREMIUM:[GM]Spectral type 560494322minJan3118:01:18::AddAffect[GM]Spectral type 506 apply 00 flag 0 duration 60494322Jan3118:01:18:: PREMIUM:[GM]Spectral type 660494322minJan3118:01:18:: VERSION CHECK 1215955205121595520512159552051215955205
SYSERR:Jan3118:01:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:01:19:: QUEST_LOAD:Login pc 78byeventJan3118:01:19:: QUEST timer name timer1 cycle 22500 pc 78 npc 4294967295 loop?0Jan3118:01:19:: QUEST add timer 0x349ab5201Jan3118:01:23:: QUEST ScriptAnswer pid 78 answer 4Jan3118:01:25:: QUEST ScriptAnswer pid 78 answer 1Jan3118:01:25::WarpSet[GM]Spectral436400215600 current map 62 target map 61Jan3118:01:25:: DISCONNECT:[GM]Spectral(DESC::~DESC)Jan3118:01:25:: SAVE:[GM]Spectral436400x215600Jan3118:01:25:: QUEST clear timer 1Jan3118:01:25:: SYSTEM: closing socket. DESC #18Jan3118:01:26:: SYSTEM:new connection from[179.124.198.87] fd:18 handshake 1951109980 output input_len 0, ptr 0x2b48d400Jan3118:01:26::Handshake: lower than zero -20Jan3118:01:27::Handshake: lower than zero -59Jan3118:01:29::Handshake: client_time 0 server_time 447137Jan3118:01:30:: LOGIN_BY_KEY: mageelvis key 1260748168Jan3118:01:30::LoginSuccessJan3118:01:30:: player([GM]Spectral).job(2)Jan3118:01:30:: player().job(0)Jan3118:01:30:: player().job(0)Jan3118:01:30:: player().job(0)Jan3118:01:30:: player().job(0)Jan3118:01:30:: success to 144.217.128.231:21000Jan3118:01:30::InputDB::login_success: mageelvis
Jan3118:01:31:: player_select: login: mageelvis index:0Jan3118:01:31:: GM_NEW_GET_LEVEL : FIND ACCOUNT
Jan3118:01:31:: PK_MODE:[GM]Spectral3Jan3118:01:31:: PLAYER_LOAD:[GM]Spectral PREMIUM 15779232001577923200, LOGGOFF_INTERVAL 6 PTR:0x33018000Jan3118:01:31:: GM_LOGIN(gmlevel=5, name=[GM]Spectral(78), pos=(436400,215600)Jan3118:01:31::InputDB: player_load [GM]Spectral436400x215600x0 LEVEL 42 MOV_SPEED 100 JOB 2 ATG 94 DFG 79GMLv5Jan3118:01:31:: ITEM_LOAD: COUNT [GM]Spectral93Jan3118:01:31:: QUEST_LOAD: count 10Jan3118:01:31:: QUEST clear timer 0Jan3118:01:31:: QUEST clear timer 0Jan3118:01:31:: acce_mission.__status 695801987Jan3118:01:31:: check_trans_ticket.__status 526282696Jan3118:01:31:: collect_quest_lv30.__status 695801987Jan3118:01:31:: contador_kills.__status -568853420Jan3118:01:31:: give_basic_weapon.__status -1253630478Jan3118:01:31:: mapas_vips.__status 526282696Jan3118:01:31:: recoger_hierbas.primero 1Jan3118:01:31:: spider_dungeon_2floor.__status 1290640410Jan3118:01:31:: contador_kills.moobs 70Jan3118:01:31:: recoger_hierbas.plantas_recogidas 11Jan3118:01:31:: VERSION:[GM]Spectral1215955205 metin2client.bin
Jan3118:01:32:: SHOW:[GM]Spectral436400x215600x0Jan3118:01:32::AddAffect[GM]Spectral type 215 apply 00 flag 28 duration 5Jan3118:01:32:: ENTERGAME:[GM]Spectral436400x215600x0179.124.198.87 map_index 61Jan3118:01:32:: HORSE STAMINA CONSUME EVENT CANCEL 0x0Jan3118:01:32:: HORSE STAMINA REGEN EVENT CREATE 0x3d38ddc0Jan3118:01:32::SendLandList map 61 count 0 elem_size:0Jan3118:01:32::AddAffect[GM]Spectral type 500 apply 00 flag 0 duration 60494308Jan3118:01:32:: PREMIUM:[GM]Spectral type 060494308minJan3118:01:32::AddAffect[GM]Spectral type 501 apply 00 flag 0 duration 60494308Jan3118:01:32:: PREMIUM:[GM]Spectral type 160494308minJan3118:01:32::AddAffect[GM]Spectral type 502 apply 00 flag 0 duration 60494308Jan3118:01:32:: PREMIUM:[GM]Spectral type 260494308minJan3118:01:32::AddAffect[GM]Spectral type 503 apply 00 flag 0 duration 60494308Jan3118:01:32:: PREMIUM:[GM]Spectral type 360494308minJan3118:01:32::AddAffect[GM]Spectral type 504 apply 00 flag 0 duration 60494308Jan3118:01:32:: PREMIUM:[GM]Spectral type 460494308minJan3118:01:32::AddAffect[GM]Spectral type 505 apply 00 flag 0 duration 60494308Jan3118:01:32:: PREMIUM:[GM]Spectral type 560494308minJan3118:01:32::AddAffect[GM]Spectral type 506 apply 00 flag 0 duration 60494308Jan3118:01:32:: PREMIUM:[GM]Spectral type 660494308minJan3118:01:32:: VERSION CHECK 1215955205121595520512159552051215955205Jan3118:01:33:: QUEST_LOAD:Login pc 78byeventJan3118:01:33:: QUEST timer name timer1 cycle 22500 pc 78 npc 4294967295 loop?0Jan3118:01:33:: QUEST add timer 0x2e5602201Jan3118:01:36::OnClickMarshmallow[vnum 20433ServerUniqueID39724, pid 0]by[GM]SpectralJan3118:01:36:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:01:36:: QUEST add timer 0x2e560e002Jan3118:01:37:: QUEST remove withno cancel 0x2e560e00Jan3118:01:46:: COMMAND:[GM]Spectral: mob
Jan3118:01:46:: COMMAND:[GM]Spectral: mob
Jan3118:01:47:: COMMAND:[GM]Spectral: mob
Jan3118:01:47:: COMMAND:[GM]Spectral: mob
Jan3118:01:47:: COMMAND:[GM]Spectral: mob
Jan3118:01:47:: COMMAND:[GM]Spectral: mob
Jan3118:01:47:: COMMAND:[GM]Spectral: mob
Jan3118:01:48:: COMMAND:[GM]Spectral: mob
Jan3118:01:48:: COMMAND:[GM]Spectral: mob
Jan3118:01:48:: COMMAND:[GM]Spectral: mob
Jan3118:01:48:: COMMAND:[GM]Spectral: mob
Jan3118:01:49:: COMMAND:[GM]Spectral: mob
Jan3118:01:49:: COMMAND:[GM]Spectral: mob
Jan3118:01:51::OnClickMarshmallow[vnum 20433ServerUniqueID39986, pid 0]by[GM]SpectralJan3118:01:51:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:01:51:: QUEST add timer 0x4df900c02Jan3118:01:52::OnClickMarshmallow[vnum 20433ServerUniqueID39986, pid 0]by[GM]SpectralJan3118:01:52:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:01:52:: QUEST remove timer 0x4df900c0Jan3118:01:52:: QUEST add timer 0x39f75d602Jan3118:01:53:: QUEST remove withno cancel 0x39f75d60Jan3118:01:54::OnClickMarshmallow[vnum 20433ServerUniqueID39981, pid 0]by[GM]SpectralJan3118:01:54:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:01:54:: QUEST add timer 0x4df900c02Jan3118:01:54::OnClickMarshmallow[vnum 20433ServerUniqueID39981, pid 0]by[GM]SpectralJan3118:01:54:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:01:54:: QUEST remove timer 0x4df900c0Jan3118:01:54:: QUEST add timer 0x4df48e802Jan3118:01:55:: QUEST remove withno cancel 0x4df48e80Jan3118:01:56::OnClickMarshmallow[vnum 20433ServerUniqueID39983, pid 0]by[GM]SpectralJan3118:01:56:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:01:56:: QUEST add timer 0x4df48ee02Jan3118:01:57::OnClickMarshmallow[vnum 20433ServerUniqueID39983, pid 0]by[GM]SpectralJan3118:01:57:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:01:57:: QUEST remove timer 0x4df48ee0Jan3118:01:57:: QUEST add timer 0x4df486402Jan3118:01:58:: QUEST remove withno cancel 0x4df48640Jan3118:01:58:: GLOBAL_TIME:Jan3118:01:58 time_gap 0Jan3118:02:00::OnClickMarshmallow[vnum 20433ServerUniqueID39985, pid 0]by[GM]SpectralJan3118:02:00:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:00:: QUEST add timer 0x4df900c02Jan3118:02:00::OnClickMarshmallow[vnum 20433ServerUniqueID39985, pid 0]by[GM]SpectralJan3118:02:00:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:00:: QUEST remove timer 0x4df900c0Jan3118:02:00:: QUEST add timer 0x3d3f70802Jan3118:02:01:: QUEST remove withno cancel 0x3d3f7080Jan3118:02:03::OnClickMarshmallow[vnum 20433ServerUniqueID39980, pid 0]by[GM]SpectralJan3118:02:03:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:03:: QUEST add timer 0x4df48e802Jan3118:02:04:: QUEST remove withno cancel 0x4df48e80Jan3118:02:05::OnClickMarshmallow[vnum 20433ServerUniqueID39982, pid 0]by[GM]SpectralJan3118:02:05:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:05:: QUEST add timer 0x30171be02Jan3118:02:05::OnClickMarshmallow[vnum 20433ServerUniqueID39982, pid 0]by[GM]SpectralJan3118:02:05:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:05:: QUEST remove timer 0x30171be0Jan3118:02:05:: QUEST add timer 0x4df902602
SYSERR:Jan3118:02:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:02:06:: QUEST remove withno cancel 0x4df90260Jan3118:02:07::OnClickMarshmallow[vnum 20433ServerUniqueID39979, pid 0]by[GM]SpectralJan3118:02:07:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:07:: QUEST add timer 0x3d3f72202Jan3118:02:08::OnClickMarshmallow[vnum 20433ServerUniqueID39979, pid 0]by[GM]SpectralJan3118:02:08:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:08:: QUEST remove timer 0x3d3f7220Jan3118:02:08:: QUEST add timer 0x30171ba02Jan3118:02:09:: QUEST remove withno cancel 0x30171ba0Jan3118:02:10::OnClickMarshmallow[vnum 20433ServerUniqueID39977, pid 0]by[GM]SpectralJan3118:02:10:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:10:: QUEST add timer 0x39f757a02Jan3118:02:10::OnClickMarshmallow[vnum 20433ServerUniqueID39977, pid 0]by[GM]SpectralJan3118:02:10:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:10:: QUEST remove timer 0x39f757a0Jan3118:02:10:: QUEST add timer 0x2e4e8ca02Jan3118:02:11:: QUEST remove withno cancel 0x2e4e8ca0Jan3118:02:12::OnClickMarshmallow[vnum 20433ServerUniqueID39987, pid 0]by[GM]SpectralJan3118:02:12:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:12:: QUEST add timer 0x2e4e8cc02Jan3118:02:13::OnClickMarshmallow[vnum 20433ServerUniqueID39987, pid 0]by[GM]SpectralJan3118:02:13:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:13:: QUEST remove timer 0x2e4e8cc0Jan3118:02:13:: QUEST add timer 0x39f757a02Jan3118:02:14:: QUEST remove withno cancel 0x39f757a0Jan3118:02:15::OnClickMarshmallow[vnum 20433ServerUniqueID39976, pid 0]by[GM]SpectralJan3118:02:15:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:15:: QUEST add timer 0x2e560f402Jan3118:02:15::OnClickMarshmallow[vnum 20433ServerUniqueID39976, pid 0]by[GM]SpectralJan3118:02:15:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:15:: QUEST remove timer 0x2e560f40Jan3118:02:15:: QUEST add timer 0x39f75be02Jan3118:02:16:: QUEST remove withno cancel 0x39f75be0Jan3118:02:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)Jan3118:02:17::OnClickMarshmallow[vnum 20433ServerUniqueID39984, pid 0]by[GM]SpectralJan3118:02:17:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:17:: QUEST add timer 0x4e9e55c02Jan3118:02:18::OnClickMarshmallow[vnum 20433ServerUniqueID39984, pid 0]by[GM]SpectralJan3118:02:18:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:18:: QUEST remove timer 0x4e9e55c0Jan3118:02:18:: QUEST add timer 0x2e4e85a02
SYSERR:Jan3118:02:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:02:19:: QUEST remove withno cancel 0x2e4e85a0Jan3118:02:20::OnClickMarshmallow[vnum 20433ServerUniqueID39978, pid 0]by[GM]SpectralJan3118:02:20:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:20:: QUEST add timer 0x4df900202Jan3118:02:20::OnClickMarshmallow[vnum 20433ServerUniqueID39978, pid 0]by[GM]SpectralJan3118:02:20:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:20:: QUEST remove timer 0x4df90020Jan3118:02:20:: QUEST add timer 0x4e9e58602Jan3118:02:21:: QUEST remove withno cancel 0x4e9e5860Jan3118:02:22::OnClickMarshmallow[vnum 20433ServerUniqueID39975, pid 0]by[GM]SpectralJan3118:02:22:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:22:: QUEST add timer 0x4e9e55602Jan3118:02:23::OnClickMarshmallow[vnum 20433ServerUniqueID39975, pid 0]by[GM]SpectralJan3118:02:23:: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop?0Jan3118:02:23:: QUEST remove timer 0x4e9e5560Jan3118:02:23:: QUEST add timer 0x2e4e85a02Jan3118:02:24:: QUEST remove withno cancel 0x2e4e85a0Jan3118:02:58:: GLOBAL_TIME:Jan3118:02:58 time_gap 0
SYSERR:Jan3118:03:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:03:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:03:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:03:58:: GLOBAL_TIME:Jan3118:03:58 time_gap 0Jan3118:04:04:: PONG!1100Jan3118:04:04:: SYSTEM: closing socket. DESC #19
SYSERR:Jan3118:04:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:04:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:04:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:04:26:: PONG!1230Jan3118:04:26::Handshake: lower than zero -60Jan3118:04:29::Handshake: client_time 447137 server_time 627018 name:[GM]SpectralJan3118:04:33:: SAVE:[GM]Spectral436534x215927Jan3118:04:58:: GLOBAL_TIME:Jan3118:04:58 time_gap 0
SYSERR:Jan3118:05:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:05:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:05:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:05:58:: GLOBAL_TIME:Jan3118:05:58 time_gap 0
SYSERR:Jan3118:06:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:06:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:06:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:06:58:: GLOBAL_TIME:Jan3118:06:58 time_gap 0
SYSERR:Jan3118:07:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:07:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:07:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:07:26:: PONG!1240Jan3118:07:27::Handshake: lower than zero -40Jan3118:07:27::Handshake: client_time 627018 server_time 805817 name:[GM]SpectralJan3118:07:34:: SAVE:[GM]Spectral436534x215927Jan3118:07:58:: GLOBAL_TIME:Jan3118:07:58 time_gap 0
SYSERR:Jan3118:08:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:08:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:08:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:08:58:: DISCONNECT:[GM]Spectral(DESC::~DESC)Jan3118:08:58:: SAVE:[GM]Spectral436418x215773Jan3118:08:58:: QUEST clear timer 1Jan3118:08:58:: SYSTEM: closing socket. DESC #18Jan3118:08:58:: GLOBAL_TIME:Jan3118:08:58 time_gap 0Jan3118:08:59:: SYSTEM:new connection from[179.124.198.87] fd:18 handshake 1919447930 output input_len 0, ptr 0x2b48d400Jan3118:09:00:: SYSTEM: closing socket. DESC #18
SYSERR:Jan3118:09:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:09:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:09:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:09:58:: GLOBAL_TIME:Jan3118:09:58 time_gap 0
SYSERR:Jan3118:10:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:10:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:10:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:10:58:: GLOBAL_TIME:Jan3118:10:58 time_gap 0
SYSERR:Jan3118:11:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:11:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:11:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:11:58:: GLOBAL_TIME:Jan3118:11:58 time_gap 0
SYSERR:Jan3118:12:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:12:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:12:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:12:58:: GLOBAL_TIME:Jan3118:12:58 time_gap 0
SYSERR:Jan3118:13:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:13:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:13:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:13:58:: GLOBAL_TIME:Jan3118:13:58 time_gap 0
SYSERR:Jan3118:14:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:14:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:14:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:14:58:: GLOBAL_TIME:Jan3118:14:58 time_gap 0
SYSERR:Jan3118:15:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:15:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:15:19::SpawnMob:SpawnMob:no mob data for vnum 20369Jan3118:15:57::no sectree for spawn at 1031430226908 mobvnum 394 mapindex 41Jan3118:15:57::no sectree for spawn at 1029872231936 mobvnum 394 mapindex 41Jan3118:15:57::no sectree for spawn at 1025577214376 mobvnum 394 mapindex 41Jan3118:15:57::no sectree for spawn at 1025400219271 mobvnum 394 mapindex 41Jan3118:15:57::no sectree for spawn at 1031446230758 mobvnum 394 mapindex 41Jan3118:15:57::no sectree for spawn at 1029238219189 mobvnum 394 mapindex 41Jan3118:15:57::no sectree for spawn at 1031218221454 mobvnum 394 mapindex 41Jan3118:15:57::no sectree for spawn at 1027102221292 mobvnum 394 mapindex 41Jan3118:15:58:: GLOBAL_TIME:Jan3118:15:58 time_gap 0
SYSERR:Jan3118:16:06::SpawnMob:SpawnMob:no mob data for vnum 20370Jan3118:16:17::SpawnMob: cannot create monster at non-exist sectree 405100 x 656600(map 61)
SYSERR:Jan3118:16:19::SpawnMob:SpawnMob:no mob data for vnum 20369
Question
Yuri Cesar
Hello everyone, I have a problem with a methin2 harvesting system. It happens that after I harvest some plants, after 7-8 minutes I take DC, I've tried a lot but I do not think the solution!
Quest ---- INSERT INTO `skill_proto` VALUES ('7', 0x20B1E2C7F741EBB8ED, '5', '1', '1', '0', 'HP', '-(0)', '50+140*k', '', '', '0', '', '', 'SELFONLY', '', 'NONE', '100+k*1000/6', '2', '', '', '', '', '', '0', '0', 'MELEE', '10', '0.8', '0', '400'); quest recoger_hierbas begin state start begin when login with pc.getqf("primero") != 1 begin pc.setqf("primero", 1) pc.setqf("plantas_recogidas", 0) pc.set_skill_level(7,59) end when 20094.click or 20092.click with pc.getqf("primero") == 1 begin --- cambiar esto por los vnum de las setas o las hierbas if pc.is_mount() != true then cmdchat("Sistema_Objetos") -- Esto ejecuta la animación. timer("Hierbas", 1) -- este timer se cambia según la animación, lo que tarde en coger la hierba xD end end when Hierbas.timer begin npc.purge() pc.setqf("plantas_recogidas",pc.getqf("plantas_recogidas")+1) chat("Felicidades, encontrastes una planta") end --when xxx.use or xxx.use begin --- cambiar eso por los values de los items -- item.remove() -- affect.add_collect(apply.MAX_HP, 500, 60*12) --500 hp 12 horas -- affect.add_collect(apply.CRITICAL_PCT, 10, 60*12) --10% criticos 12 horas --end end end
Game.py "Sistema_Objetos" : self.__Sistema_Recoger_Objetos, def __Sistema_Recoger_Objetos(self): import player import herbology vid_mine = player.GetTargetVID() vid2 = player.GetCharacterDistance(int(vid_mine)) if int(vid2) >=165: self.herbology_dialog = herbology.Herbologia() self.herbology_dialog.Open() chat.AppendChat(chat.CHAT_TYPE_INFO, "Estás muy lejos de la planta") else: chat.AppendChat(chat.CHAT_TYPE_INFO, "Estás cerca de la planta") if player.GetJob() >= 2: player.ClickSkillSlot(10) else: player.ClickSkillSlot(10) return
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.