Jump to content

Blastro

Inactive Member
  • Posts

    15
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Blastro

  1. Hi everyone,

    I've a 40k client and also a 40k server.
    I've decompiled locale_tr to edit my item_proto and mob_proto from the client.

    To decompile item_proto i've used Zone-Archiver 1.1 and it seems to decompile it without any problem.
    I open the decompiled item_proto.xml and edit the things I want to edit with Sublime Text 2.
    After I changed everything I go to Zone-Archiver and compile again.
    No errors happend till now. 
    I go to my locale_tr decompiled folder and replace the old item_proto to this new one edited.

    After I compile the locale_tr.epk again and replace it on the client, I open Metin2.exe and I get to the login screen

    After I enter my account and pick my character I get a crash (Metin2 just closes). Why is this happening?
    I know its from the new item_proto, there is some bug in there. How can I fix this issue?
    I really need to fix this problem because without this I can't edit anything on my server :(

    I really hope you guys can help me out. I will leave here the edited item_proto and the decompiled .xml file

    Please help me guys I really need to get this fixed. Thanks 

    LINK: 

    This is the hidden content, please

     

    • Metin2 Dev 15
    • Dislove 2
    • Angry 1
    • Cry 1
    • Lmao 1
    • Good 3
    • Love 1
    • Love 6
  2. 1 minute ago, Shang said:

    Use with instead of and.

    This is what I have and still not working

    quest ponei begin
        state start begin
            when 20349.chat."Quero andar de cavalo" with horse.get_level() < 1 begin
                say_title("Rapaz do Estábulo - Cavalo Normal")
                say("Olá, "..pc.get_name())
                say("Ouvi dizer que queres galopar?")
                say("")
                say("Muito bem, eu vou-te dar as instruções")
                say("que precisas de seguir.")
                wait()
                say_title("Rapaz do Estábulo")
                say("Para poderes andar de cavalo tens de")
                say("matar um Boss que se encontra na cidade")
                say_reward("Bakra")
                say("")
                say("Lá vais encontrar o chefe")
                say("dos rufias da cidade")
                say("O nome dele é:")
                say_reward("Rufia do Assaltante Bakra")
                say("")
                say("Vai ter com ele e mata-o para reclamar")
                say("o teu cavalo, podes ir em equipa.")
                wait()
                say_title("Rapaz do Estábulo - Cavalo Normal")
                say("Aconcelho-te a levares companheiros.")
                say("Estes rufias não sao brincadeira")
                say("")
                say("Quando terminares a tua caça")
                say("Vem ter comigo.")
                say("")
                say("Boa sorte.")
                if horse.get_level()==1 then
                    say_title("Rapaz do Estábulo - Cavalo Armado")
                    say("CAVALO ARMADO")
                elseif horse.get_level()==11 then
                    say_title("Rapaz do Estábulo - Cavalo Militar")
                    say("CAVALO MILITAR")
                end
            end
        end
    end

  3. 2 minutes ago, MrLibya said:

     

    
    
     

    quest ponei begin
        state start begin
            when 20349.chat."Quero andar de cavalo" and horse.get_level() < 1 begin
                say_title("Rapaz do Estábulo - Cavalo Normal")
                say("Olá, "..pc.get_name())
                say("Ouvi dizer que queres galopar?")
                say("")
                say("Muito bem, eu vou-te dar as instruções")
                say("que precisas de seguir.")
                wait()
                say_title("Rapaz do Estábulo")
                say("Para poderes andar de cavalo tens de")
                say("matar um Boss que se encontra na cidade")
                say_reward("Bakra")
                say("")
                say("Lá vais encontrar o chefe")
                say("dos rufias da cidade")
                say("O nome dele é:")
                say_reward("Rufia do Assaltante Bakra")
                say("")
                say("Vai ter com ele e mata-o para reclamar")
                say("o teu cavalo, podes ir em equipa.")
                wait()
                say_title("Rapaz do Estábulo - Cavalo Normal")
                say("Aconcelho-te a levares companheiros.")
                say("Estes rufias não sao brincadeira")
                say("")
                say("Quando terminares a tua caça")
                say("Vem ter comigo.")
                say("")
                say("Boa sorte.")
                if horse.get_level() == 1 then
                    say_title("Rapaz do Estábulo - Cavalo Armado")
                    say("CAVALO ARMADO")
                elseif horse.get_level() == 11 then
                    say_title("Rapaz do Estábulo - Cavalo Militar")
                    say("CAVALO MILITAR")
                end
            end
        end
    end

     

     

    I don't know when I need to use the end to close the block?
    I know 
    quest needs
    state needs
    when needs
    if needs?

    Thank you for your reply my friend I will test this I will tell you how it goes :)

  4. I'm trying to make a quest where you go to the horse guard and by the level of your horse it shows different menus

    But when I compile the quest using make.sh it doesnt create anything in the objects folder or works on the server (I used /reload q and I added the quest to the quest_list.txt)

    Here is the code:

    quest ponei begin
            state start begin
                when 20349.chat."Quero andar de cavalo" begin and
                    when horse.get_level() < 1 then
                                 say_title("Rapaz do Estábulo - Cavalo Normal")
                         say("Olá, "..pc.get_name())
                         say("Ouvi dizer que queres galopar?")
                         say("")
                         say("Muito bem, eu vou-te dar as instruções")
                         say("que precisas de seguir.")
                         wait()
                         say_title("Rapaz do Estábulo")
                         say("Para poderes andar de cavalo tens de")
                         say("matar um Boss que se encontra na cidade")
                         say_reward("Bakra")
                         say("")
                         say("Lá vais encontrar o chefe")
                         say("dos rufias da cidade")
                         say("O nome dele é:")
                         say_reward("Rufia do Assaltante Bakra")
                         say("")
                         say("Vai ter com ele e mata-o para reclamar")
                         say("o teu cavalo, podes ir em equipa.")
                         wait()
                         say_title("Rapaz do Estábulo - Cavalo Normal")
                         say("Aconcelho-te a levares companheiros.")
                         say("Estes rufias não sao brincadeira")
                         say("")
                         say("Quando terminares a tua caça")
                         say("Vem ter comigo.")
                         say("")
                         say("Boa sorte.")
                         if horse.get_level() == 1 then
                         say_title("Rapaz do Estábulo - Cavalo Armado")
                         say("CAVALO ARMADO")
                         if horse.get_level() == 11 then
                         say_title("Rapaz do Estábulo - Cavalo Militar")
                         say("CAVALO MILITAR")
                         end
                         end
                         end
                         end
                         end

  5. So I have a private server just for me and a friend and the problem is that I can login and create my character and play without any problems.
    My friend in the other side can login, create is character but when comes the part you need to load the game(after choosing the character) he gets dc?
    The server is run with hamachi, we are both connected. I have Portmap open and all the ports open too:

    • 11002 -> OPEN
    • 12002-> OPEN
    • 13000-> OPEN
    • 14000-> OPEN
    • 13001-> OPEN
    • 14001-> OPEN
    • 16000-> OPEN
    • 17000-> OPEN
    • 16001-> OPEN
    • 17001-> OPEN
    • 19000-> OPEN
    • 20001-> OPEN
    • 22000-> OPEN
    • 23000-> OPEN
    • 22001-> OPEN
    • 13099-> OPEN
    • 14099-> OPEN
    • 50000-> OPEN

    I've tried to disable my Windows firewall and my friends firewall but no results... I also have my routers firewall disabled. I don't know what to do please help me out guys
    Thank you in advance

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