Jump to content

[SA]Mighty

Inactive Member
  • Posts

    54
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by [SA]Mighty

  1. I try adding new npcs to my server, I tried like 5 different npcs now and none of them work, when I add the npc folder to the NPC packs, enter the vnum and the folder name and root, and add the queries both serverside and clientside. I get the error when game is loading.     "LoadGameNPC() - ['vnum foldername']" the error message says that the problem is from root and tells the exact line?? but all I do is add the vnum and the foldername there, am I missing anything?

  2. 8 hours ago, metin2-factory said:

    There should be enough tutorials in here/elitepvpers.

    short brief: put the new npc folder inside npc/npc2 client folder then pack it.

    add to server/client mob_proto a line with the new npc vnum(don't forget to pack mob_proto and replace it in locale folder - client side,and /reload server side)

    in root folder(client side) search for npc_list.txt and add there the folder name + npc vnum

    that's all basically.

    Thank you so much!

    8 hours ago, metin2-factory said:

    There should be enough tutorials in here/elitepvpers.

    short brief: put the new npc folder inside npc/npc2 client folder then pack it.

    add to server/client mob_proto a line with the new npc vnum(don't forget to pack mob_proto and replace it in locale folder - client side,and /reload server side)

    in root folder(client side) search for npc_list.txt and add there the folder name + npc vnum

    that's all basically.

    The root part is what I was missing.

  3. Can anyone link me to any tutorial on how to add NPC? I've searched literally everywhere and couldn't find.
    I download the npc files, but don't know what to do from there.
    If you don't know any tutorial, but you do know how to add, I'd really appreciate if you like just briefly tell me how. Just so I know where I need to start from.
    Thanks!

  4. Hello,
    I had this quest in my quests folder, its just a bunch of NPC speeches + an npc that has like lottery u basically choose number 1-20 if u guess it it rewards u, so basically the speeches and everything was working previously, but after I translated, nothing works anymore (in this quest file). I guess while translating I deleted something important or so. So can you please tell me whats wrong with the quest? I searched line after line and compared to other working quests but i still couldn't find whats wrong with this one.
     Here is the quest:

     

    quest npc_talk begin
        state start begin
            when 20355.chat."The Spirit Stones" begin
                say_title(mob_name(20355)..":")
                say("Did you know that nowadays, skilled ")
                say("warriors harness the evil power within ")
                say("a metin stone in a small stones called spirit ")
                say("stones? These are very useful in battles and can ")
                say("grant a lot of power to an item.")
            end
            when 20008.chat."Welcome" begin
                say_title(mob_name(20008)..":")
                say("Welcome, young adventurer. You're at ")
                say("Octavio's fast food, where the finest meals ")
                say("are made. Enjoy!")
            end
            when 20004.chat."Life as Beggar" or 20041.chat."A részegségrõl" begin
                say_title(mob_name(20004)..":")
                say("Maan, life sucks. I envy you for being so ")
                say("brave. I'd shit myself infront of a Metin ")
                say("Stone. I really do envy you!")
            end
            when 20005.chat."Liquids!" begin
                say_title(mob_name(20005)..":")
                say("Did you know about the new power liquids?")
                say("What? You don't know? Go grab some! They're ")
                say("sold at "Power-ups" Shop near the Guardian.")
                say("They give immense power to whoever drinks them.")
            end

            when 20011.chat."What is OX?" begin
                say_title(mob_name(20011)..":")
                say("I see, so you're new here...")
                say("OX is an event where players are teleported to ")
                say("a special map. They're asked yes/no questions.")
                say("If the answer is Yes you go to O, and if it is ")
                say("no you go to X. As simple as that.")
            end

            when 20018.chat."Wolf's Liver" begin
                say_title(mob_name(20018)..":")
                say("Do you know about the new special medicine?")
                say("It is made out of wolves' livers. It can cure ")
                say("any sickness. Be it even cancer.")
            end
            when 20006.chat."Little Brother " begin
                say_title(mob_name(20006)..":")
                say("Little brother is missing... blablabla!")
                say("Won't this bitch stop complaining about this ")
                say("already?! In every goddamn server! EVERY SERVER!")
            end

            when 20012.chat."Rice" begin
                say_title(mob_name(20012)..":")
                say("Hoho, I'm very good at making rice!")
                say("Maybe you wanna try some? no? ok...")
                say("*cries in a corner*")
            end

            when 20021.chat."Click here!" begin
                say_title(mob_name(20021)..":")
                say("Dafuq did you click for ?")
                say("What did you expect ? goddamit!")
            end
            when 20002.chat."I'm fat..." begin
                say_title(mob_name(20002)..":")
                say("Please don't laugh at me...")
                say("I already know I'm fat okay?")
            end
            when 20003.chat."Shhh!" begin
                say_title(mob_name(20003)..":")
                say("Can you just shut up and leave?")
                say("You're gonna wake up my son!")
            end
            when 20024.chat."Passion" begin
                say_title(mob_name(20024)..":")
                say("I really love Justin Bieber! What's that? ")
                say("You want me to kill myself? Fair enough...")
            end
             when 33002.chat."The Lottery" begin
                say_title("Ali Baba: ")
                say("")
                say("Would you like to play?")
                local a=select("Yes.","No.")
                
                    if a==2 then
                        return
                    end    
                
            if a == 1 then
                say_title("Ali Baba: ")
                say("")
                say("You're gonna guess a number from 1 to 20.")
                say("If you guess it right, I'm gonna give you 1kkk Gold!")
                say("However, each attempt will cost you 10kk Gold.")
                say("Are you up for this?")
            end
                    
                    local b=select("Yes.","No.")
                    
                            if b==2 then
                                return
                            end
                    
                        if b==1 then
                            if pc.get_money() >= 10000000 then                        
                            local numbers = { 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 }
                            local number = numbers[number( 1 ,20 )]
                            local szam = number
                        
                            pc.changegold(-10000000)
                            say_title("Ali Baba: ")
                            say("")
                            say_reward("Guess the number from 1 to 20: ")
                            local c = input()
                            
                                if c == ""..number.."" then
                                    say_title("Ali Baba: ")
                                    say("")
                                    say("Congratulations!")
                                    say("You guessed correctly! Bullseye!")
                                    say("")
                                    say_reward("You've earned 1kkk gold.")
                                    pc.changegold(1000000000)
                                    notice_all(""..pc.get_name().." has just won the lottery!")
                                else
                                    say_title("Ali Baba: ")
                                    say("")
                                    say_reward("I'm sorry.")
                                    say_reward("You didn't guess correctly.")
                                    say_reward("The correct number was "..szam.."")
                                    say_reward("Better luck next time!")
                                end
                        else
                            say_title("Ali Baba: ")
                            say("")
                            say_reward("Not enough gold!")
                        end
                    end
                end
        end
    end

  5. On 2/4/2016 at 2:54 PM, Mr.Oz J. said:

    quest list, delete the one u dislike
    run

    .....\locale\xx\quest sh make.sh

     

    On 2/4/2016 at 4:04 PM, tierrilopes said:

    wtf....

     

    Just remove from locale_list  or whatever your is called and run make.sh/make.py.

    It will delete and recreate the whole object folder. Easier and faster then manually removing it from  object (thats nonsense)

    Thank you so much guys :D

  6. 1 hour ago, finaltorment said:

    find /usr/game/share/locale/germany/quest/object -name "questname*"
     after that you can remove the quest all object whit:
    find /usr/game/share/locale/germany/quest/object -name "questname*" -delete

    If I delete em all, it will just delete those unimportant quests like chaegirab's and hunts and stuff, it won't effect those that are important to the server like when u click storeroom guy or ?

  7. 1 hour ago, enzi said:

    Hi :)

    1.) -

    2.) usr/home/game/share/locale/xxx/map/mapname -> edit stone.txt , regen.txt , boss.txt etc..

    3.) usr/home/game/share/locale/xxx/ -> mob_drop_item.txt

     

    For the third, It's simple :D , but for how to edit stones, that's complicated, I see lotsa numbers and stuff when I try and edit the stone.txt file
    for example:
     

    m    754    518    150    200    0    0    1800s    100    1    8011
    m    748    740    150    200    0    0    1700s    100    1    8011
    m    1153    768    150    200    0    0    1600s    100    1    8013
    m    196    1178    150    150    0    0    1500s    100    1    8013
    m    1312    1184    150    150    0    0    1900s    100    1    8013

    r    762    209    100    100    0    0    3575s    100    1    2004
    r    350    345    100    100    0    0    3580s    100    1    2004
    r    299    475    100    100    0    0    3585s    100    1    2004
    r    774    510    100    100    0    0    3590s    100    1    2004
    r    841    573    100    100    0    0    3595s    100    1    2004
    r    678    621    100    100    0    0    3600s    100    1    2004
    r    1126    690    100    100    0    0    3605s    100    1    2004
    r    177    720    100    100    0    0    3610s    100    1    2004
    r    1247    732    100    100    0    0    3615s    100    1    2004
    r    1369    734    100    100    0    0    3620s    100    1    2004
    r    739    747    100    100    0    0    3625s    100    1    2004
    r    737    808    100    100    0    0    3630s    100    1    2004
    r    1382    816    100    100    0    0    3635s    100    1    2004
    r    1082    841    100    100    0    0    3640s    100    1    2004
    r    595    855    100    100    0    0    3645s    100    1    2004
    r    686    855    100    100    0    0    3650s    100    1    2004
    r    1200    873    100    100    0    0    3655s    100    1    2004
    r    480    880    100    100    0    0    3660s    100    1    2004
    r    1328    1037    100    100    0    0    3665s    100    1    2004
    r    887    1166    100    100    0    0    3670s    100    1    2004
    r    627    1212    100    100    0    0    3675s    100    1    2004
    r    1332    1261    100    100    0    0    3680s    100    1    2004
    r    503    1267    100    100    0    0    3685s    100    1    2004
    r    566    1275    100    100    0    0    3690s    100    1    2004
    r    556    1313    100    100    0    0    3695s    100    1    2004
    r    551    1328    100    100    0    0    3700s    100    1    2004
    r    1424    1366    100    100    0    0    3705s    100    1    2004
     

  8. Guys, I have some questions, but I don't know what to type on google for tutorials...
     -How do I make an Item upgrade into another item (ie. Hwang Armor to King Armor) And how do I change upgrade requirements?
     -How do I change Metin stones or NPCs in a map? (I have farm map, but I want other metin stones to be spawned.)?
     -How do I control monster drops and stuff like that?

    If you guys could answer or link me to any english tutorial about any of these questions It would be VERY MUCH appreciated :D
     

  9. Hey guys!
    I changed Item_proto in my client to translate item names, and it seems to be working fine, but some people tell me that I need to change it in the server side too... All the name are translated fine for me in the client so why do I need to change it in the serverside ?
    And also, I can't change mobs' names, I've tried changing them in mob_proto but it doesn't work
    Thanks 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.