Jump to content
  • 0

Herbology system


Yuri Cesar

Question

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

class Herbologia(ui.ScriptWindow):

	def __init__(self):
		ui.ScriptWindow.__init__(self)
		self.activado = FALSE
		self.sistema = FALSE

	def OnUpdate(self):
		if self.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()

		if int(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
			if self.activado == FALSE:
				self.OnMouseLeftButtonDown(vid_mine)


				return self.sistema
			self.Close()

	def Open(self):
		self.Show()
		vid_mine = player.GetTargetVID() 
		distancia = player.GetCharacterDistance(int(vid_mine))

		if int(distancia) <=165:
			self.Close()


	def OnMouseLeftButtonDown(self, vid_mine):
		net.SendOnClickPacket(vid_mine)
		self.activado = TRUE

		return self.activado


	def Destroy(self):
		self.Hide()	

	def Close(self):
		self.Hide()
playersettingmodule.py


def DefineSkillIndexDict():
	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 MODE
	SetGeneralMotions(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 Suelo
	for 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

def __LoadGameAssassinEx(race, path):
	## Assassin
	#########################################################################################
	chrmgr.SelectRace(race)

	## GENERAL MOTION MODE
	SetGeneralMotions(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 Suelo
	for 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

	
def __LoadGameSuraEx(race, path):
	## Sura
	#########################################################################################
	chrmgr.SelectRace(race)

	## GENERAL MOTION MODE
	SetGeneralMotions(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 Suelo
	for 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

def __LoadGameShamanEx(race, path):
	## Shaman
	#########################################################################################
	chrmgr.SelectRace(race)

	## GENERAL MOTION MODE
	SetGeneralMotions(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 Suelo
	for 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
Syslog

Jan 31 18:00:00 :: AddAffect [GM]Spectral type 510 apply 40 20 flag 0 duration 600
Jan 31 18:00:01 :: AddAffect [GM]Spectral type 510 apply 41 20 flag 0 duration 600
Jan 31 18:00:01 :: AddAffect [GM]Spectral type 200 apply 19 60 flag 12 duration 1800
Jan 31 18:00:02 :: AddAffect [GM]Spectral type 510 apply 17 20 flag 0 duration 1800
Jan 31 18:00:03 :: MOVE: [GM]Spectral trying to move too far (dist: 30369252.0m) Riding(0)
Jan 31 18:00:03 :: SHOW: [GM]Spectral 424738x193569x0
Jan 31 18:00:03 ::       in same sectree
Jan 31 18:00:03 :: MOVE: [GM]Spectral trying to move too far (dist: 30369252.0m) Riding(0)
Jan 31 18:00:03 :: SHOW: [GM]Spectral 424738x193569x0
Jan 31 18:00:03 ::       in same sectree
Jan 31 18:00:03 :: MOVE: [GM]Spectral trying to move too far (dist: 30369252.0m) Riding(0)
Jan 31 18:00:03 :: SHOW: [GM]Spectral 424738x193569x0
Jan 31 18:00:03 ::       in same sectree
Jan 31 18:00:03 :: MOVE: [GM]Spectral trying to move too far (dist: 30369252.0m) Riding(0)
Jan 31 18:00:03 :: SHOW: [GM]Spectral 424738x193569x0
Jan 31 18:00:03 ::       in same sectree
Jan 31 18:00:03 :: MOVE: [GM]Spectral trying to move too far (dist: 30369252.0m) Riding(0)
Jan 31 18:00:03 :: SHOW: [GM]Spectral 424738x193569x0
Jan 31 18:00:03 ::       in same sectree
SYSERR: Jan 31 18:00:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:00:16 :: AddAffect [GM]Spectral type 211 apply 19 -30 flag 5 duration 20
Jan 31 18:00:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
Jan 31 18:00:17 :: COMMAND: [GM]Spectral: quit
SYSERR: Jan 31 18:00:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:00:22 :: COMMAND: [GM]Spectral: goto
Jan 31 18:00:22 :: WarpSet [GM]Spectral 469300 964200 current map 61 target map 1
Jan 31 18:00:23 :: DISCONNECT: [GM]Spectral (DESC::~DESC)
Jan 31 18:00:23 :: SAVE: [GM]Spectral 469300x964200
Jan 31 18:00:23 :: QUEST clear timer 1
Jan 31 18:00:23 :: SYSTEM: closing socket. DESC #18
Jan 31 18:00:23 :: SYSTEM: new connection from [179.124.198.87] fd: 18 handshake 2410784128 output input_len 0, ptr 0x2b48cc00
Jan 31 18:00:24 :: Handshake: lower than zero -39
Jan 31 18:00:24 :: Handshake: client_time 0 server_time 382337
Jan 31 18:00:25 :: LOGIN_BY_KEY: mageelvis key 906869927
Jan 31 18:00:25 :: LoginSuccess
Jan 31 18:00:25 :: 	player([GM]Spectral).job(2)
Jan 31 18:00:25 :: 	player().job(0)
Jan 31 18:00:25 :: 	player().job(0)
Jan 31 18:00:25 :: 	player().job(0)
Jan 31 18:00:25 :: 	player().job(0)
Jan 31 18:00:25 :: success to 144.217.128.231:21000
Jan 31 18:00:25 :: InputDB::login_success: mageelvis
Jan 31 18:00:26 :: player_select: login: mageelvis index: 0
Jan 31 18:00:26 :: SYSTEM: new connection from [179.124.198.87] fd: 19 handshake 969773372 output input_len 0, ptr 0x2b48d400
Jan 31 18:00:26 :: GM_NEW_GET_LEVEL : FIND ACCOUNT
Jan 31 18:00:26 :: PK_MODE: [GM]Spectral 3
Jan 31 18:00:26 :: PLAYER_LOAD: [GM]Spectral PREMIUM 1577923200 1577923200, LOGGOFF_INTERVAL 3 PTR: 0x4e9ea000
Jan 31 18:00:26 :: GM_LOGIN(gmlevel=5, name=[GM]Spectral(78), pos=(469300, 964200)
Jan 31 18:00:26 :: InputDB: player_load [GM]Spectral 469300x964200x0 LEVEL 42 MOV_SPEED 100 JOB 2 ATG 94 DFG 79 GMLv 5
Jan 31 18:00:26 :: ITEM_LOAD: COUNT [GM]Spectral 93
Jan 31 18:00:26 :: MARK_SERVER: Login
Jan 31 18:00:26 :: QUEST_LOAD: count 10
Jan 31 18:00:26 :: QUEST clear timer 0
Jan 31 18:00:26 :: QUEST clear timer 0
Jan 31 18:00:26 ::             acce_mission.__status 695801987
Jan 31 18:00:26 ::             check_trans_ticket.__status 526282696
Jan 31 18:00:26 ::             collect_quest_lv30.__status 695801987
Jan 31 18:00:26 ::             contador_kills.__status -568853420
Jan 31 18:00:26 ::             give_basic_weapon.__status -1253630478
Jan 31 18:00:26 ::             mapas_vips.__status 526282696
Jan 31 18:00:26 ::             recoger_hierbas.primero 1
Jan 31 18:00:26 ::             spider_dungeon_2floor.__status 1290640410
Jan 31 18:00:26 ::             contador_kills.moobs 70
Jan 31 18:00:26 ::             recoger_hierbas.plantas_recogidas 11
Jan 31 18:00:27 :: LargePacket Size 5508
Jan 31 18:00:27 :: reallocating buffer to 16384, current 1024
Jan 31 18:00:27 :: MARK_SERVER: GuildMarkIDXList 5515 bytes sent.
Jan 31 18:00:27 :: VERSION: [GM]Spectral 1215955205 metin2client.bin
Jan 31 18:00:28 :: MARK_SERVER: Sending blocks. (imgIdx 0 diff 0 size 10)
Jan 31 18:00:28 :: MARK_SERVER: Sending blocks. (imgIdx 1 diff 0 size 10)
Jan 31 18:00:29 :: SHOW: [GM]Spectral 469300x964200x0
Jan 31 18:00:29 :: reallocating buffer to 8192, current 1024
Jan 31 18:00:29 :: AddAffect [GM]Spectral type 215 apply 0 0 flag 28 duration 5
Jan 31 18:00:29 :: ENTERGAME: [GM]Spectral 469300x964200x0 179.124.198.87 map_index 1
Jan 31 18:00:29 :: HORSE STAMINA CONSUME EVENT CANCEL 0x0
Jan 31 18:00:29 :: HORSE STAMINA REGEN EVENT CREATE 0x4e9f0260
Jan 31 18:00:29 :: SendLandList map 1 count 18 elem_size: 432
Jan 31 18:00:29 :: AddAffect [GM]Spectral type 500 apply 0 0 flag 0 duration 60494371
Jan 31 18:00:29 :: PREMIUM: [GM]Spectral type 0 60494371min
Jan 31 18:00:29 :: AddAffect [GM]Spectral type 501 apply 0 0 flag 0 duration 60494371
Jan 31 18:00:29 :: PREMIUM: [GM]Spectral type 1 60494371min
Jan 31 18:00:29 :: AddAffect [GM]Spectral type 502 apply 0 0 flag 0 duration 60494371
Jan 31 18:00:29 :: PREMIUM: [GM]Spectral type 2 60494371min
Jan 31 18:00:29 :: AddAffect [GM]Spectral type 503 apply 0 0 flag 0 duration 60494371
Jan 31 18:00:29 :: PREMIUM: [GM]Spectral type 3 60494371min
Jan 31 18:00:29 :: AddAffect [GM]Spectral type 504 apply 0 0 flag 0 duration 60494371
Jan 31 18:00:29 :: PREMIUM: [GM]Spectral type 4 60494371min
Jan 31 18:00:29 :: AddAffect [GM]Spectral type 505 apply 0 0 flag 0 duration 60494371
Jan 31 18:00:29 :: PREMIUM: [GM]Spectral type 5 60494371min
Jan 31 18:00:29 :: AddAffect [GM]Spectral type 506 apply 0 0 flag 0 duration 60494371
Jan 31 18:00:29 :: PREMIUM: [GM]Spectral type 6 60494371min
Jan 31 18:00:29 :: VERSION CHECK 1215955205 1215955205 1215955205 1215955205
Jan 31 18:00:29 :: DISCONNECT: [GM]Spectral (DESC::~DESC)
Jan 31 18:00:29 :: SAVE: [GM]Spectral 469300x964200
Jan 31 18:00:29 :: QUEST clear timer 0
Jan 31 18:00:29 :: SYSTEM: closing socket. DESC #18
Jan 31 18:00:29 :: SYSTEM: closing socket. DESC #19
Jan 31 18:00:41 :: SYSTEM: new connection from [179.124.198.87] fd: 18 handshake 417932709 output input_len 0, ptr 0x2b48d400
Jan 31 18:00:41 :: SYSTEM: closing socket. DESC #18
Jan 31 18:00:48 :: SYSTEM: new connection from [179.124.198.87] fd: 18 handshake 275657873 output input_len 0, ptr 0x2b48d400
Jan 31 18:00:49 :: Handshake: client_time 0 server_time 407217
Jan 31 18:00:49 :: LOGIN_BY_KEY: mageelvis key 1260748168
Jan 31 18:00:50 :: LoginSuccess
Jan 31 18:00:50 :: 	player([GM]Spectral).job(2)
Jan 31 18:00:50 :: 	player().job(0)
Jan 31 18:00:50 :: 	player().job(0)
Jan 31 18:00:50 :: 	player().job(0)
Jan 31 18:00:50 :: 	player().job(0)
Jan 31 18:00:50 :: success to 144.217.128.231:21000
Jan 31 18:00:50 :: InputDB::login_success: mageelvis
Jan 31 18:00:50 :: SYSTEM: new connection from [179.124.198.87] fd: 19 handshake 4209381598 output input_len 0, ptr 0x2b48cc00
Jan 31 18:00:51 :: MARK_SERVER: Login
Jan 31 18:00:51 :: LargePacket Size 5508
Jan 31 18:00:51 :: reallocating buffer to 16384, current 1024
Jan 31 18:00:51 :: MARK_SERVER: GuildMarkIDXList 5515 bytes sent.
Jan 31 18:00:52 :: SYSTEM: closing socket. DESC #18
Jan 31 18:00:52 :: SYSTEM: new connection from [179.124.198.87] fd: 18 handshake 1268429841 output input_len 0, ptr 0x2b48d400
Jan 31 18:00:52 :: MARK_SERVER: Sending blocks. (imgIdx 0 diff 0 size 10)
Jan 31 18:00:52 :: MARK_SERVER: Sending blocks. (imgIdx 1 diff 0 size 10)
Jan 31 18:00:52 :: Handshake: client_time 0 server_time 410777
Jan 31 18:00:52 :: SYSTEM: closing socket. DESC #19
Jan 31 18:00:53 :: LOGIN_BY_KEY: mageelvis key 1260748168
Jan 31 18:00:53 :: LoginSuccess
Jan 31 18:00:53 :: 	player([GM]Spectral).job(2)
Jan 31 18:00:53 :: 	player().job(0)
Jan 31 18:00:53 :: 	player().job(0)
Jan 31 18:00:53 :: 	player().job(0)
Jan 31 18:00:53 :: 	player().job(0)
Jan 31 18:00:53 :: success to 144.217.128.231:21000
Jan 31 18:00:53 :: InputDB::login_success: mageelvis
Jan 31 18:00:54 :: player_select: login: mageelvis index: 0
Jan 31 18:00:54 :: GM_NEW_GET_LEVEL : FIND ACCOUNT
Jan 31 18:00:54 :: PK_MODE: [GM]Spectral 3
Jan 31 18:00:54 :: PLAYER_LOAD: [GM]Spectral PREMIUM 1577923200 1577923200, LOGGOFF_INTERVAL 25 PTR: 0x4e475000
Jan 31 18:00:54 :: GM_LOGIN(gmlevel=5, name=[GM]Spectral(78), pos=(469300, 964200)
Jan 31 18:00:54 :: InputDB: player_load [GM]Spectral 469300x964200x0 LEVEL 42 MOV_SPEED 100 JOB 2 ATG 94 DFG 79 GMLv 5
Jan 31 18:00:54 :: ITEM_LOAD: COUNT [GM]Spectral 93
Jan 31 18:00:54 :: QUEST_LOAD: count 10
Jan 31 18:00:54 :: QUEST clear timer 0
Jan 31 18:00:54 :: QUEST clear timer 0
Jan 31 18:00:54 ::             acce_mission.__status 695801987
Jan 31 18:00:54 ::             check_trans_ticket.__status 526282696
Jan 31 18:00:54 ::             collect_quest_lv30.__status 695801987
Jan 31 18:00:54 ::             contador_kills.__status -568853420
Jan 31 18:00:54 ::             give_basic_weapon.__status -1253630478
Jan 31 18:00:54 ::             mapas_vips.__status 526282696
Jan 31 18:00:54 ::             recoger_hierbas.primero 1
Jan 31 18:00:54 ::             spider_dungeon_2floor.__status 1290640410
Jan 31 18:00:54 ::             contador_kills.moobs 70
Jan 31 18:00:54 ::             recoger_hierbas.plantas_recogidas 11
Jan 31 18:00:55 :: VERSION: [GM]Spectral 1215955205 metin2client.bin
Jan 31 18:00:58 :: GLOBAL_TIME: Jan 31 18:00:58 time_gap 0
Jan 31 18:01:01 :: SHOW: [GM]Spectral 469300x964200x0
Jan 31 18:01:01 :: reallocating buffer to 8192, current 1024
Jan 31 18:01:01 :: AddAffect [GM]Spectral type 215 apply 0 0 flag 28 duration 5
Jan 31 18:01:01 :: ENTERGAME: [GM]Spectral 469300x964200x0 179.124.198.87 map_index 1
Jan 31 18:01:01 :: HORSE STAMINA CONSUME EVENT CANCEL 0x0
Jan 31 18:01:01 :: HORSE STAMINA REGEN EVENT CREATE 0x4df49180
Jan 31 18:01:01 :: SendLandList map 1 count 18 elem_size: 432
Jan 31 18:01:01 :: AddAffect [GM]Spectral type 500 apply 0 0 flag 0 duration 60494339
Jan 31 18:01:01 :: PREMIUM: [GM]Spectral type 0 60494339min
Jan 31 18:01:01 :: AddAffect [GM]Spectral type 501 apply 0 0 flag 0 duration 60494339
Jan 31 18:01:01 :: PREMIUM: [GM]Spectral type 1 60494339min
Jan 31 18:01:01 :: AddAffect [GM]Spectral type 502 apply 0 0 flag 0 duration 60494339
Jan 31 18:01:01 :: PREMIUM: [GM]Spectral type 2 60494339min
Jan 31 18:01:01 :: AddAffect [GM]Spectral type 503 apply 0 0 flag 0 duration 60494339
Jan 31 18:01:01 :: PREMIUM: [GM]Spectral type 3 60494339min
Jan 31 18:01:01 :: AddAffect [GM]Spectral type 504 apply 0 0 flag 0 duration 60494339
Jan 31 18:01:01 :: PREMIUM: [GM]Spectral type 4 60494339min
Jan 31 18:01:01 :: AddAffect [GM]Spectral type 505 apply 0 0 flag 0 duration 60494339
Jan 31 18:01:01 :: PREMIUM: [GM]Spectral type 5 60494339min
Jan 31 18:01:01 :: AddAffect [GM]Spectral type 506 apply 0 0 flag 0 duration 60494339
Jan 31 18:01:01 :: PREMIUM: [GM]Spectral type 6 60494339min
Jan 31 18:01:01 :: VERSION CHECK 1215955205 1215955205 1215955205 1215955205
Jan 31 18:01:02 :: QUEST_LOAD: Login pc 78 by event
Jan 31 18:01:02 :: QUEST timer name timer1 cycle 22500 pc 78 npc 4294967295 loop? 0
Jan 31 18:01:02 :: QUEST add timer 0x4e9ef7a0 1
Jan 31 18:01:02 :: CreateTarget : target pid 78 quest 56 name __TARGET__ arg 2 3130 0
Jan 31 18:01:02 :: CreateTarget : target pid 78 quest 94 name theowahdan arg 2 3128 0
Jan 31 18:01:03 :: SYSTEM: new connection from [179.124.198.87] fd: 19 handshake 3654926775 output input_len 0, ptr 0x2b48cc00
Jan 31 18:01:03 :: SendTargetUpdatePacket 3 474400x956200
Jan 31 18:01:03 :: SendTargetUpdatePacket 4 473800x956200
Jan 31 18:01:03 :: MARK_SERVER: Login
Jan 31 18:01:04 :: GuildSymbolCRC 4176 0 0
SYSERR: Jan 31 18:01:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:01:09 :: QUEST ScriptAnswer pid 78 answer 4
Jan 31 18:01:13 :: QUEST ScriptAnswer pid 78 answer 3
Jan 31 18:01:13 :: WarpSet [GM]Spectral 600800 687400 current map 1 target map 62
Jan 31 18:01:14 :: DISCONNECT: [GM]Spectral (DESC::~DESC)
Jan 31 18:01:14 :: SAVE: [GM]Spectral 600800x687400
Jan 31 18:01:14 :: QUEST clear timer 1
Jan 31 18:01:14 :: SYSTEM: closing socket. DESC #18
Jan 31 18:01:14 :: SYSTEM: new connection from [179.124.198.87] fd: 18 handshake 889329989 output input_len 0, ptr 0x2b48d400
Jan 31 18:01:14 :: Handshake: lower than zero -20
Jan 31 18:01:15 :: Handshake: client_time 0 server_time 433177
Jan 31 18:01:15 :: LOGIN_BY_KEY: mageelvis key 1260748168
Jan 31 18:01:16 :: LoginSuccess
Jan 31 18:01:16 :: 	player([GM]Spectral).job(2)
Jan 31 18:01:16 :: 	player().job(0)
Jan 31 18:01:16 :: 	player().job(0)
Jan 31 18:01:16 :: 	player().job(0)
Jan 31 18:01:16 :: 	player().job(0)
Jan 31 18:01:16 :: success to 144.217.128.231:21000
Jan 31 18:01:16 :: InputDB::login_success: mageelvis
Jan 31 18:01:16 :: player_select: login: mageelvis index: 0
Jan 31 18:01:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
Jan 31 18:01:17 :: GM_NEW_GET_LEVEL : FIND ACCOUNT
Jan 31 18:01:17 :: PK_MODE: [GM]Spectral 3
Jan 31 18:01:17 :: PLAYER_LOAD: [GM]Spectral PREMIUM 1577923200 1577923200, LOGGOFF_INTERVAL 3 PTR: 0x30610000
Jan 31 18:01:17 :: GM_LOGIN(gmlevel=5, name=[GM]Spectral(78), pos=(600800, 687400)
Jan 31 18:01:17 :: InputDB: player_load [GM]Spectral 600800x687400x0 LEVEL 42 MOV_SPEED 100 JOB 2 ATG 94 DFG 79 GMLv 5
Jan 31 18:01:17 :: ITEM_LOAD: COUNT [GM]Spectral 93
Jan 31 18:01:17 :: QUEST_LOAD: count 10
Jan 31 18:01:17 :: QUEST clear timer 0
Jan 31 18:01:17 :: QUEST clear timer 0
Jan 31 18:01:17 ::             acce_mission.__status 695801987
Jan 31 18:01:17 ::             check_trans_ticket.__status 526282696
Jan 31 18:01:17 ::             collect_quest_lv30.__status 695801987
Jan 31 18:01:17 ::             contador_kills.__status -568853420
Jan 31 18:01:17 ::             give_basic_weapon.__status -1253630478
Jan 31 18:01:17 ::             mapas_vips.__status 526282696
Jan 31 18:01:17 ::             recoger_hierbas.primero 1
Jan 31 18:01:17 ::             spider_dungeon_2floor.__status 1290640410
Jan 31 18:01:17 ::             contador_kills.moobs 70
Jan 31 18:01:17 ::             recoger_hierbas.plantas_recogidas 11
Jan 31 18:01:17 :: VERSION: [GM]Spectral 1215955205 metin2client.bin
Jan 31 18:01:18 :: SHOW: [GM]Spectral 600800x687400x0
Jan 31 18:01:18 :: AddAffect [GM]Spectral type 215 apply 0 0 flag 28 duration 5
Jan 31 18:01:18 :: ENTERGAME: [GM]Spectral 600800x687400x0 179.124.198.87 map_index 62
Jan 31 18:01:18 :: HORSE STAMINA CONSUME EVENT CANCEL 0x0
Jan 31 18:01:18 :: HORSE STAMINA REGEN EVENT CREATE 0x4e9fa440
Jan 31 18:01:18 :: SendLandList map 62 count 0 elem_size: 0
Jan 31 18:01:18 :: AddAffect [GM]Spectral type 500 apply 0 0 flag 0 duration 60494322
Jan 31 18:01:18 :: PREMIUM: [GM]Spectral type 0 60494322min
Jan 31 18:01:18 :: AddAffect [GM]Spectral type 501 apply 0 0 flag 0 duration 60494322
Jan 31 18:01:18 :: PREMIUM: [GM]Spectral type 1 60494322min
Jan 31 18:01:18 :: AddAffect [GM]Spectral type 502 apply 0 0 flag 0 duration 60494322
Jan 31 18:01:18 :: PREMIUM: [GM]Spectral type 2 60494322min
Jan 31 18:01:18 :: AddAffect [GM]Spectral type 503 apply 0 0 flag 0 duration 60494322
Jan 31 18:01:18 :: PREMIUM: [GM]Spectral type 3 60494322min
Jan 31 18:01:18 :: AddAffect [GM]Spectral type 504 apply 0 0 flag 0 duration 60494322
Jan 31 18:01:18 :: PREMIUM: [GM]Spectral type 4 60494322min
Jan 31 18:01:18 :: AddAffect [GM]Spectral type 505 apply 0 0 flag 0 duration 60494322
Jan 31 18:01:18 :: PREMIUM: [GM]Spectral type 5 60494322min
Jan 31 18:01:18 :: AddAffect [GM]Spectral type 506 apply 0 0 flag 0 duration 60494322
Jan 31 18:01:18 :: PREMIUM: [GM]Spectral type 6 60494322min
Jan 31 18:01:18 :: VERSION CHECK 1215955205 1215955205 1215955205 1215955205
SYSERR: Jan 31 18:01:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:01:19 :: QUEST_LOAD: Login pc 78 by event
Jan 31 18:01:19 :: QUEST timer name timer1 cycle 22500 pc 78 npc 4294967295 loop? 0
Jan 31 18:01:19 :: QUEST add timer 0x349ab520 1
Jan 31 18:01:23 :: QUEST ScriptAnswer pid 78 answer 4
Jan 31 18:01:25 :: QUEST ScriptAnswer pid 78 answer 1
Jan 31 18:01:25 :: WarpSet [GM]Spectral 436400 215600 current map 62 target map 61
Jan 31 18:01:25 :: DISCONNECT: [GM]Spectral (DESC::~DESC)
Jan 31 18:01:25 :: SAVE: [GM]Spectral 436400x215600
Jan 31 18:01:25 :: QUEST clear timer 1
Jan 31 18:01:25 :: SYSTEM: closing socket. DESC #18
Jan 31 18:01:26 :: SYSTEM: new connection from [179.124.198.87] fd: 18 handshake 1951109980 output input_len 0, ptr 0x2b48d400
Jan 31 18:01:26 :: Handshake: lower than zero -20
Jan 31 18:01:27 :: Handshake: lower than zero -59
Jan 31 18:01:29 :: Handshake: client_time 0 server_time 447137
Jan 31 18:01:30 :: LOGIN_BY_KEY: mageelvis key 1260748168
Jan 31 18:01:30 :: LoginSuccess
Jan 31 18:01:30 :: 	player([GM]Spectral).job(2)
Jan 31 18:01:30 :: 	player().job(0)
Jan 31 18:01:30 :: 	player().job(0)
Jan 31 18:01:30 :: 	player().job(0)
Jan 31 18:01:30 :: 	player().job(0)
Jan 31 18:01:30 :: success to 144.217.128.231:21000
Jan 31 18:01:30 :: InputDB::login_success: mageelvis
Jan 31 18:01:31 :: player_select: login: mageelvis index: 0
Jan 31 18:01:31 :: GM_NEW_GET_LEVEL : FIND ACCOUNT
Jan 31 18:01:31 :: PK_MODE: [GM]Spectral 3
Jan 31 18:01:31 :: PLAYER_LOAD: [GM]Spectral PREMIUM 1577923200 1577923200, LOGGOFF_INTERVAL 6 PTR: 0x33018000
Jan 31 18:01:31 :: GM_LOGIN(gmlevel=5, name=[GM]Spectral(78), pos=(436400, 215600)
Jan 31 18:01:31 :: InputDB: player_load [GM]Spectral 436400x215600x0 LEVEL 42 MOV_SPEED 100 JOB 2 ATG 94 DFG 79 GMLv 5
Jan 31 18:01:31 :: ITEM_LOAD: COUNT [GM]Spectral 93
Jan 31 18:01:31 :: QUEST_LOAD: count 10
Jan 31 18:01:31 :: QUEST clear timer 0
Jan 31 18:01:31 :: QUEST clear timer 0
Jan 31 18:01:31 ::             acce_mission.__status 695801987
Jan 31 18:01:31 ::             check_trans_ticket.__status 526282696
Jan 31 18:01:31 ::             collect_quest_lv30.__status 695801987
Jan 31 18:01:31 ::             contador_kills.__status -568853420
Jan 31 18:01:31 ::             give_basic_weapon.__status -1253630478
Jan 31 18:01:31 ::             mapas_vips.__status 526282696
Jan 31 18:01:31 ::             recoger_hierbas.primero 1
Jan 31 18:01:31 ::             spider_dungeon_2floor.__status 1290640410
Jan 31 18:01:31 ::             contador_kills.moobs 70
Jan 31 18:01:31 ::             recoger_hierbas.plantas_recogidas 11
Jan 31 18:01:31 :: VERSION: [GM]Spectral 1215955205 metin2client.bin
Jan 31 18:01:32 :: SHOW: [GM]Spectral 436400x215600x0
Jan 31 18:01:32 :: AddAffect [GM]Spectral type 215 apply 0 0 flag 28 duration 5
Jan 31 18:01:32 :: ENTERGAME: [GM]Spectral 436400x215600x0 179.124.198.87 map_index 61
Jan 31 18:01:32 :: HORSE STAMINA CONSUME EVENT CANCEL 0x0
Jan 31 18:01:32 :: HORSE STAMINA REGEN EVENT CREATE 0x3d38ddc0
Jan 31 18:01:32 :: SendLandList map 61 count 0 elem_size: 0
Jan 31 18:01:32 :: AddAffect [GM]Spectral type 500 apply 0 0 flag 0 duration 60494308
Jan 31 18:01:32 :: PREMIUM: [GM]Spectral type 0 60494308min
Jan 31 18:01:32 :: AddAffect [GM]Spectral type 501 apply 0 0 flag 0 duration 60494308
Jan 31 18:01:32 :: PREMIUM: [GM]Spectral type 1 60494308min
Jan 31 18:01:32 :: AddAffect [GM]Spectral type 502 apply 0 0 flag 0 duration 60494308
Jan 31 18:01:32 :: PREMIUM: [GM]Spectral type 2 60494308min
Jan 31 18:01:32 :: AddAffect [GM]Spectral type 503 apply 0 0 flag 0 duration 60494308
Jan 31 18:01:32 :: PREMIUM: [GM]Spectral type 3 60494308min
Jan 31 18:01:32 :: AddAffect [GM]Spectral type 504 apply 0 0 flag 0 duration 60494308
Jan 31 18:01:32 :: PREMIUM: [GM]Spectral type 4 60494308min
Jan 31 18:01:32 :: AddAffect [GM]Spectral type 505 apply 0 0 flag 0 duration 60494308
Jan 31 18:01:32 :: PREMIUM: [GM]Spectral type 5 60494308min
Jan 31 18:01:32 :: AddAffect [GM]Spectral type 506 apply 0 0 flag 0 duration 60494308
Jan 31 18:01:32 :: PREMIUM: [GM]Spectral type 6 60494308min
Jan 31 18:01:32 :: VERSION CHECK 1215955205 1215955205 1215955205 1215955205
Jan 31 18:01:33 :: QUEST_LOAD: Login pc 78 by event
Jan 31 18:01:33 :: QUEST timer name timer1 cycle 22500 pc 78 npc 4294967295 loop? 0
Jan 31 18:01:33 :: QUEST add timer 0x2e560220 1
Jan 31 18:01:36 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39724, pid 0] by [GM]Spectral
Jan 31 18:01:36 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:01:36 :: QUEST add timer 0x2e560e00 2
Jan 31 18:01:37 :: QUEST remove with no cancel 0x2e560e00
Jan 31 18:01:46 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:46 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:47 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:47 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:47 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:47 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:47 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:48 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:48 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:48 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:48 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:49 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:49 :: COMMAND: [GM]Spectral: mob
Jan 31 18:01:51 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39986, pid 0] by [GM]Spectral
Jan 31 18:01:51 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:01:51 :: QUEST add timer 0x4df900c0 2
Jan 31 18:01:52 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39986, pid 0] by [GM]Spectral
Jan 31 18:01:52 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:01:52 :: QUEST remove timer 0x4df900c0
Jan 31 18:01:52 :: QUEST add timer 0x39f75d60 2
Jan 31 18:01:53 :: QUEST remove with no cancel 0x39f75d60
Jan 31 18:01:54 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39981, pid 0] by [GM]Spectral
Jan 31 18:01:54 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:01:54 :: QUEST add timer 0x4df900c0 2
Jan 31 18:01:54 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39981, pid 0] by [GM]Spectral
Jan 31 18:01:54 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:01:54 :: QUEST remove timer 0x4df900c0
Jan 31 18:01:54 :: QUEST add timer 0x4df48e80 2
Jan 31 18:01:55 :: QUEST remove with no cancel 0x4df48e80
Jan 31 18:01:56 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39983, pid 0] by [GM]Spectral
Jan 31 18:01:56 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:01:56 :: QUEST add timer 0x4df48ee0 2
Jan 31 18:01:57 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39983, pid 0] by [GM]Spectral
Jan 31 18:01:57 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:01:57 :: QUEST remove timer 0x4df48ee0
Jan 31 18:01:57 :: QUEST add timer 0x4df48640 2
Jan 31 18:01:58 :: QUEST remove with no cancel 0x4df48640
Jan 31 18:01:58 :: GLOBAL_TIME: Jan 31 18:01:58 time_gap 0
Jan 31 18:02:00 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39985, pid 0] by [GM]Spectral
Jan 31 18:02:00 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:00 :: QUEST add timer 0x4df900c0 2
Jan 31 18:02:00 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39985, pid 0] by [GM]Spectral
Jan 31 18:02:00 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:00 :: QUEST remove timer 0x4df900c0
Jan 31 18:02:00 :: QUEST add timer 0x3d3f7080 2
Jan 31 18:02:01 :: QUEST remove with no cancel 0x3d3f7080
Jan 31 18:02:03 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39980, pid 0] by [GM]Spectral
Jan 31 18:02:03 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:03 :: QUEST add timer 0x4df48e80 2
Jan 31 18:02:04 :: QUEST remove with no cancel 0x4df48e80
Jan 31 18:02:05 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39982, pid 0] by [GM]Spectral
Jan 31 18:02:05 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:05 :: QUEST add timer 0x30171be0 2
Jan 31 18:02:05 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39982, pid 0] by [GM]Spectral
Jan 31 18:02:05 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:05 :: QUEST remove timer 0x30171be0
Jan 31 18:02:05 :: QUEST add timer 0x4df90260 2
SYSERR: Jan 31 18:02:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:02:06 :: QUEST remove with no cancel 0x4df90260
Jan 31 18:02:07 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39979, pid 0] by [GM]Spectral
Jan 31 18:02:07 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:07 :: QUEST add timer 0x3d3f7220 2
Jan 31 18:02:08 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39979, pid 0] by [GM]Spectral
Jan 31 18:02:08 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:08 :: QUEST remove timer 0x3d3f7220
Jan 31 18:02:08 :: QUEST add timer 0x30171ba0 2
Jan 31 18:02:09 :: QUEST remove with no cancel 0x30171ba0
Jan 31 18:02:10 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39977, pid 0] by [GM]Spectral
Jan 31 18:02:10 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:10 :: QUEST add timer 0x39f757a0 2
Jan 31 18:02:10 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39977, pid 0] by [GM]Spectral
Jan 31 18:02:10 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:10 :: QUEST remove timer 0x39f757a0
Jan 31 18:02:10 :: QUEST add timer 0x2e4e8ca0 2
Jan 31 18:02:11 :: QUEST remove with no cancel 0x2e4e8ca0
Jan 31 18:02:12 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39987, pid 0] by [GM]Spectral
Jan 31 18:02:12 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:12 :: QUEST add timer 0x2e4e8cc0 2
Jan 31 18:02:13 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39987, pid 0] by [GM]Spectral
Jan 31 18:02:13 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:13 :: QUEST remove timer 0x2e4e8cc0
Jan 31 18:02:13 :: QUEST add timer 0x39f757a0 2
Jan 31 18:02:14 :: QUEST remove with no cancel 0x39f757a0
Jan 31 18:02:15 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39976, pid 0] by [GM]Spectral
Jan 31 18:02:15 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:15 :: QUEST add timer 0x2e560f40 2
Jan 31 18:02:15 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39976, pid 0] by [GM]Spectral
Jan 31 18:02:15 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:15 :: QUEST remove timer 0x2e560f40
Jan 31 18:02:15 :: QUEST add timer 0x39f75be0 2
Jan 31 18:02:16 :: QUEST remove with no cancel 0x39f75be0
Jan 31 18:02:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
Jan 31 18:02:17 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39984, pid 0] by [GM]Spectral
Jan 31 18:02:17 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:17 :: QUEST add timer 0x4e9e55c0 2
Jan 31 18:02:18 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39984, pid 0] by [GM]Spectral
Jan 31 18:02:18 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:18 :: QUEST remove timer 0x4e9e55c0
Jan 31 18:02:18 :: QUEST add timer 0x2e4e85a0 2
SYSERR: Jan 31 18:02:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:02:19 :: QUEST remove with no cancel 0x2e4e85a0
Jan 31 18:02:20 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39978, pid 0] by [GM]Spectral
Jan 31 18:02:20 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:20 :: QUEST add timer 0x4df90020 2
Jan 31 18:02:20 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39978, pid 0] by [GM]Spectral
Jan 31 18:02:20 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:20 :: QUEST remove timer 0x4df90020
Jan 31 18:02:20 :: QUEST add timer 0x4e9e5860 2
Jan 31 18:02:21 :: QUEST remove with no cancel 0x4e9e5860
Jan 31 18:02:22 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39975, pid 0] by [GM]Spectral
Jan 31 18:02:22 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:22 :: QUEST add timer 0x4e9e5560 2
Jan 31 18:02:23 :: OnClick Marshmallow[vnum 20433 ServerUniqueID 39975, pid 0] by [GM]Spectral
Jan 31 18:02:23 :: QUEST timer name Hierbas cycle 25 pc 78 npc 4294967294 loop? 0
Jan 31 18:02:23 :: QUEST remove timer 0x4e9e5560
Jan 31 18:02:23 :: QUEST add timer 0x2e4e85a0 2
Jan 31 18:02:24 :: QUEST remove with no cancel 0x2e4e85a0
Jan 31 18:02:58 :: GLOBAL_TIME: Jan 31 18:02:58 time_gap 0
SYSERR: Jan 31 18:03:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:03:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:03:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:03:58 :: GLOBAL_TIME: Jan 31 18:03:58 time_gap 0
Jan 31 18:04:04 :: PONG! 1 100
Jan 31 18:04:04 :: SYSTEM: closing socket. DESC #19
SYSERR: Jan 31 18:04:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:04:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:04:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:04:26 :: PONG! 1 230
Jan 31 18:04:26 :: Handshake: lower than zero -60
Jan 31 18:04:29 :: Handshake: client_time 447137 server_time 627018 name: [GM]Spectral
Jan 31 18:04:33 :: SAVE: [GM]Spectral 436534x215927
Jan 31 18:04:58 :: GLOBAL_TIME: Jan 31 18:04:58 time_gap 0
SYSERR: Jan 31 18:05:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:05:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:05:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:05:58 :: GLOBAL_TIME: Jan 31 18:05:58 time_gap 0
SYSERR: Jan 31 18:06:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:06:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:06:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:06:58 :: GLOBAL_TIME: Jan 31 18:06:58 time_gap 0
SYSERR: Jan 31 18:07:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:07:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:07:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:07:26 :: PONG! 1 240
Jan 31 18:07:27 :: Handshake: lower than zero -40
Jan 31 18:07:27 :: Handshake: client_time 627018 server_time 805817 name: [GM]Spectral
Jan 31 18:07:34 :: SAVE: [GM]Spectral 436534x215927
Jan 31 18:07:58 :: GLOBAL_TIME: Jan 31 18:07:58 time_gap 0
SYSERR: Jan 31 18:08:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:08:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:08:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:08:58 :: DISCONNECT: [GM]Spectral (DESC::~DESC)
Jan 31 18:08:58 :: SAVE: [GM]Spectral 436418x215773
Jan 31 18:08:58 :: QUEST clear timer 1
Jan 31 18:08:58 :: SYSTEM: closing socket. DESC #18
Jan 31 18:08:58 :: GLOBAL_TIME: Jan 31 18:08:58 time_gap 0
Jan 31 18:08:59 :: SYSTEM: new connection from [179.124.198.87] fd: 18 handshake 1919447930 output input_len 0, ptr 0x2b48d400
Jan 31 18:09:00 :: SYSTEM: closing socket. DESC #18
SYSERR: Jan 31 18:09:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:09:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:09:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:09:58 :: GLOBAL_TIME: Jan 31 18:09:58 time_gap 0
SYSERR: Jan 31 18:10:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:10:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:10:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:10:58 :: GLOBAL_TIME: Jan 31 18:10:58 time_gap 0
SYSERR: Jan 31 18:11:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:11:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:11:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:11:58 :: GLOBAL_TIME: Jan 31 18:11:58 time_gap 0
SYSERR: Jan 31 18:12:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:12:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:12:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:12:58 :: GLOBAL_TIME: Jan 31 18:12:58 time_gap 0
SYSERR: Jan 31 18:13:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:13:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:13:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:13:58 :: GLOBAL_TIME: Jan 31 18:13:58 time_gap 0
SYSERR: Jan 31 18:14:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:14:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:14:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:14:58 :: GLOBAL_TIME: Jan 31 18:14:58 time_gap 0
SYSERR: Jan 31 18:15:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:15:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:15:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369
Jan 31 18:15:57 :: no sectree for spawn at 1031430 226908 mobvnum 394 mapindex 41
Jan 31 18:15:57 :: no sectree for spawn at 1029872 231936 mobvnum 394 mapindex 41
Jan 31 18:15:57 :: no sectree for spawn at 1025577 214376 mobvnum 394 mapindex 41
Jan 31 18:15:57 :: no sectree for spawn at 1025400 219271 mobvnum 394 mapindex 41
Jan 31 18:15:57 :: no sectree for spawn at 1031446 230758 mobvnum 394 mapindex 41
Jan 31 18:15:57 :: no sectree for spawn at 1029238 219189 mobvnum 394 mapindex 41
Jan 31 18:15:57 :: no sectree for spawn at 1031218 221454 mobvnum 394 mapindex 41
Jan 31 18:15:57 :: no sectree for spawn at 1027102 221292 mobvnum 394 mapindex 41
Jan 31 18:15:58 :: GLOBAL_TIME: Jan 31 18:15:58 time_gap 0
SYSERR: Jan 31 18:16:06 :: SpawnMob: SpawnMob: no mob data for vnum 20370
Jan 31 18:16:17 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61)
SYSERR: Jan 31 18:16:19 :: SpawnMob: SpawnMob: no mob data for vnum 20369

 

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...