Jump to content

iRETEMAG

Premium
  • Posts

    263
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by iRETEMAG

  1. quest horse_call begin
    	state start begin
    		when 50051.use with horse.get_grade()>=1 and horse.get_grade()<=10 begin
    			if pc.is_riding() then
    				horse.unride()
    			elseif pc.is_polymorphed() then
    				syschat("Transformed.")
    			elseif horse.get_grade()==0 then
    				syschat("No horse.")
    			elseif horse.get_grade()>=2 then
    				syschat("Incorrect item.")
    			else
    				horse.ride()
    			end
    		end
    	end
    end

     

    This quest is working to normal horse, but, changing the quest to:

     

    quest cavalo_chamar1 begin
    	state start begin
    		when 50052.use with horse.get_grade()>=11 and horse.get_grade()<=20 begin
    			if pc.is_riding() then
    				horse.unride()
    			elseif pc.is_polymorphed() then
    				syschat("Transformed.")
    			elseif horse.get_grade()==0 then
    				syschat("No horse.")
    			elseif horse.get_grade()>=21 then
    				syschat("Incorrect item.")
    			else
    				horse.ride()
    			end
    		end
    	end
    end

     

    The second one don't work correctly... :( Why?

  2. 1018 14:31:13089 :: CInstanceBase::AttachTextTail - VID [47112] ALREADY EXIST
    1018 14:43:58975 :: CRaceManager::GetRaceDataPointer: cannot load data by dwRaceIndex 796
    1018 14:43:58975 :: CPythonCharacterManager::CreateInstance VID[47161] Race[796]
    1018 14:43:20859 :: CRaceManager::GetRaceDataPointer: cannot load data by dwRaceIndex 796
    1018 14:43:20859 :: CPythonCharacterManager::CreateInstance VID[47161] Race[796]

     

     

    More one... :( 

  3. 1018 00:03:52166 :: CMapOutdoor::Load - LoadMonsterAreaInfo ERROR

    Open the folder metin2_map_c1 / a1 / b1 etc.. and delete files. : (Example: pack/OutdoorC1/metin2_map_c1)

    -monsterareainfo.txt

    -monsterarrange.txt

    File and replaces it:

    regen.txt137 B
    This is the hidden content, please
    !C8OrC3inLD46kJdkf1qYyU5-e58h40bryYpfszZ12Wo

     

    1017 23:48:59422 ::   File "game.py", line 1292, in OnKeyUp
    
    1017 23:48:59423 :: TypeError
    1017 23:48:59423 :: : 
    1017 23:48:59423 :: 'NoneType' object has no attribute '__getitem__'
    1017 23:48:59423 :: 

    Open the file and search function game.py (OnKeyUp) and replace it with :

    	def OnKeyUp(self, key):
    		try:
    			self.onClickKeyDict[key]()
    		except KeyError:
    			pass
    		except:
    			raise
    
    		return TRUE

     

    1017 23:41:06096 :: Unknown Server Command QuestGetMapIndex 65 | QuestGetMapIndex
    1017 23:41:06096 :: Unknown Server Command gm_login | gm_login
    1017 23:41:06155 :: Unknown Server Command QuestMessage TheGuildHouseisunderconstruction.Pleasetryitlater. | QuestMessage
    1017 23:41:06214 :: Unknown Server Command QuestGetQID 48 | QuestGetQID
    1017 23:45:51181 :: Unknown Server Command QuestGetMapIndex 66 | QuestGetMapIndex
    1017 23:45:51181 :: Unknown Server Command gm_login | gm_login
    1017 23:45:51202 :: Unknown Server Command QuestMessage TheGuildHouseisunderconstruction.Pleasetryitlater. | QuestMessage
    1017 23:45:51246 :: Unknown Server Command QuestGetQID 48 | QuestGetQID etc..

    The server sends a custom that does not recognize and is not implemented at all or wrong in the client, use the search tool WinSCP / filezila etc. and search phrases that start with cmdchat or getcurrentquestindex ()) in quest folder / object and delete those quests that you do not use. I guess it's not your serverfiles and other customer-different etc, or do not have good systems implemented or what you wanted better.

    https://www.youtube.com/watch?v=S9RVS8cjNN0

    0 syserr.txt :D <3 Thank you @VegaS

    • Metin2 Dev 2
    • Love 2
  4. Now it should work perfectly without any problem.

    https://metin2.download/picture/gKQoffuO98KTL234oRLKPkj8811HbJyt/.jpg 

    quest make_shoes_metin2dev begin
    	state start begin
    		when login with pc.level >= 19 begin			
    			setstate(vegas_quest_start)
    		end
    	end
    	state vegas_quest_start begin
    		when letter begin
    			send_letter("Proteger os Pés")
    		end
    		when button or info begin
    			say_title("Proteger os Pés")
    			say("Precisas de proteger os teus pés?")
    			say("Mata duas Se-Rangs e vais conseguir uma")
    			say("boa recompensa.")
    			say("")
    			say_reward("Voce matou x"..pc.getqf("vegas_SeRang").." Se-Rangs até agora.")
    		end
    		when 393.kill begin
    			pc.setqf("vegas_SeRang", pc.getqf("vegas_SeRang")+1)
    			if pc.getqf("vegas_SeRang")==2 then
    				setstate(vegas_end)
    			end
    		end
    	end
    	state vegas_end begin
    		when letter begin
    			send_letter("Proteger os Pés - Completo ")
    		end
    		when button or info begin
    			say_title("Parabéns!")
    			say("Pelo teu esforço vou proteger")
    			say("os teus pés")
    			    say_reward("Sapatos em Madeira+7")
    			    say_reward("5.000 Yang")
    			    say_reward("150000 Experiencia")
    				pc.change_money(5000)
    				pc.give_exp2(150000)
    				pc.give_item2(15047, 1)
    			set_state(vegas_quest_completo)
    		end
    	end	
    	state vegas_quest_completo begin
    	end
    end

     

    :o:D ;)

    I just put the (or levelup) to work but...
    Okay, THX :)

  5.  

    SYSERR CLIENT:

    1017 23:41:06096 :: Unknown Server Command QuestGetMapIndex 65 | QuestGetMapIndex
    1017 23:41:06096 :: Unknown Server Command gm_login | gm_login
    1017 23:41:06155 :: Unknown Server Command QuestMessage TheGuildHouseisunderconstruction.Pleasetryitlater. | QuestMessage
    1017 23:41:06214 :: Unknown Server Command QuestGetQID 48 | QuestGetQID
    1017 23:45:51181 :: Unknown Server Command QuestGetMapIndex 66 | QuestGetMapIndex
    1017 23:45:51181 :: Unknown Server Command gm_login | gm_login
    1017 23:45:51202 :: Unknown Server Command QuestMessage TheGuildHouseisunderconstruction.Pleasetryitlater. | QuestMessage
    1017 23:45:51246 :: Unknown Server Command QuestGetQID 48 | QuestGetQID
    1017 23:47:16339 :: Cannot find item by 0
    1017 23:47:16586 :: Cannot find item by 0
    1017 23:48:48068 :: Unknown Server Command QuestGetMapIndex 660001 | QuestGetMapIndex
    1017 23:48:48068 :: Unknown Server Command gm_login | gm_login
    1017 23:48:48085 :: Unknown Server Command QuestMessage TheGuildHouseisunderconstruction.Pleasetryitlater. | QuestMessage
    1017 23:48:48134 :: Unknown Server Command QuestGetQID 48 | QuestGetQID
    1017 23:48:54883 :: CMapOutdoor::Load - LoadMonsterAreaInfo ERROR
    1017 23:48:57367 :: Unknown Server Command QuestGetMapIndex 1 | QuestGetMapIndex
    1017 23:48:57367 :: Unknown Server Command gm_login | gm_login
    1017 23:48:57367 :: Unknown Server Command QuestMessage TheGuildHouseisunderconstruction.Pleasetryitlater. | QuestMessage
    1017 23:48:57468 :: Unknown Server Command QuestGetQID 48 | QuestGetQID
    1017 23:48:59421 :: Traceback (most recent call last):

    1017 23:48:59422 ::   File "game.py", line 1292, in OnKeyUp

    1017 23:48:59423 :: TypeError
    1017 23:48:59423 :: : 
    1017 23:48:59423 :: 'NoneType' object has no attribute '__getitem__'
    1017 23:48:59423 :: 

    1017 23:53:19412 :: CMapOutdoor::Load - LoadMonsterAreaInfo ERROR
    1017 23:53:21213 :: Unknown Server Command QuestGetMapIndex 1 | QuestGetMapIndex
    1017 23:53:21213 :: Unknown Server Command QuestMessage TheGuildHouseisunderconstruction.Pleasetryitlater. | QuestMessage
    1017 23:53:21214 :: Unknown Server Command QuestGetQID 48 | QuestGetQID
    1018 00:03:52166 :: CMapOutdoor::Load - LoadMonsterAreaInfo ERROR
    1018 00:03:54023 :: Unknown Server Command QuestGetMapIndex 1 | QuestGetMapIndex
    1018 00:03:54023 :: Unknown Server Command QuestMessage TheGuildHouseisunderconstruction.Pleasetryitlater. | QuestMessage
    1018 00:03:54042 :: Unknown Server Command QuestGetQID 48 | QuestGetQID

    This is the hidden content, please

    • Metin2 Dev 16
    • Angry 1
    • Good 5
    • Love 1
    • Love 3
  6. quest make_sapatos_lv19 begin
    	state start begin
    		when login with pc.level >= 19 begin
    			set_state(information)
    		end
    	end
    
    	state information begin
    		when letter begin
    			send_letter("Proteger os Pés")
    		end
    
    		when info or button begin
    			say("Proteger os Pés")
    			say("")
    			say("")
    			say("Precisas de proteger os teus pés?")
    			say("Mata duas Se-Rangs e vais conseguir uma")
    			say("boa recompensa.")
    			say_reward("Mata duas Se-Rangs para conseguires.")
    			say("")
    	        pc.setqf("state", 2)
    	        q.set_counter("SeRang", 2)
    		end
    
    		when 393.kill begin
    			local count = pc.getqf("state") - 1
    			if count <= 2 then
    				pc.setqf("state", count)
    	            q.set_counter("SeRang", count)
    			end
    			if count == 0 then
    			    say_title("Proteger os Pés")
    				say("")
    				say("")
    			    say("Pelo teu esforço vou proteger")
    				say("os teus pés:")
    			    say_reward("Sapatos em Madeira+7")
    			    say_reward("5.000 Yang")
    			    say_reward("150000 Experiência")
    				pc.change_money(5000)
    				pc.give_exp2(150000)
    				pc.give_item2(15047, 1)
    				clear_letter()
    				set_state(__COMPLETE__)
    
    			end
    		end
    	end
    
    	state __COMPLETE__ begin
    	end
    end

    This quest is not working :(

    It's working when I die, why?

    Why? Thx

  7. I need help with this:

    Here are the queries:

     

    <ItemDef Vnum="25040" Name="" LocalizedName="Pergaminho da Bênção" Type="3" SubType="2" Weight="0" Size="1" AntiFlags="0" Flags="0" WearFlags="0" ImmuneFlags="0" Gold="5000" ShopBuyPrice="5000" LimitType0="0" LimitValue0="0" LimitType1="0" LimitValue1="0" ApplyType0="0" ApplyValue0="0" ApplyType1="0" ApplyValue1="0" ApplyType2="0" ApplyValue2="0" Value0="0" Value1="0" Value2="0" Value3="0" Value4="0" Value5="0" Socket0="0" Socket1="0" Socket2="0" RefinedVnum="0" RefineSet="0" AlterToMagicItemPercent="0" Specular="0" GainSocketPercent="0" AddonType="0"  />
    	<ItemDef Vnum="25041" Name="" LocalizedName="Pedra Mágica" Type="3" SubType="2" Weight="0" Size="1" AntiFlags="106880" Flags="0" WearFlags="0" ImmuneFlags="0" Gold="5000" ShopBuyPrice="5000" LimitType0="0" LimitValue0="0" LimitType1="0" LimitValue1="0" ApplyType0="0" ApplyValue0="0" ApplyType1="0" ApplyValue1="0" ApplyType2="0" ApplyValue2="0" Value0="1" Value1="0" Value2="0" Value3="0" Value4="0" Value5="0" Socket0="0" Socket1="0" Socket2="0" RefinedVnum="0" RefineSet="0" AlterToMagicItemPercent="0" Specular="0" GainSocketPercent="0" AddonType="0"  />
    

     

  8. Hi people!

    Somethimes my client crash:
     

    1003 17:51:53023 :: Traceback (most recent call last):
    
    1003 17:51:53023 ::   File "game.py", line 685, in OnChangePKMode
    
    1003 17:51:53024 ::   File "interfaceModule.py", line 803, in OnChangePKMode
    
    1003 17:51:53024 ::   File "uiCharacter.py", line 563, in RefreshAlignment
    
    1003 17:51:53025 :: TypeError
    1003 17:51:53025 :: : 
    1003 17:51:53025 :: __pack_import() takes at most 4 arguments (5 given)
    1003 17:51:53025 :: 

     

     

×
×
  • 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.