Jump to content

ATAG

Active Member
  • Posts

    236
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Community Answers

  1. ATAG's post in Novaline DB error was marked as the answer   
    Use the mainline branch for game/db, nova (server part) is bugged/unfinished.
  2. ATAG's post in [binary]Error on upgrading python from 2.2 to 2.7 was marked as the answer   
    Simply comment out line 55-56.
    //PyAPI_FUNC(struct symtable *) PySymtable_Build(mod_ty, const char *, // PyFutureFeatures *);
  3. ATAG's post in help event quest was marked as the answer   
    The quest is totally wrong. Try this one:
    quest yourquest begin when login begin   local boss = {101, 102, 103, 104}   local escolha = math.random(1,1) -- math.random(1,1) is always 1... dou you really want this??   if escolha == 1 then    local mob = boss[number(1,table.getn(boss)]    pc.setqf("mob", mob)    pc.setqf("state", 20)    q.set_counter("eventkill:", 20)    say("kill mob"..mob_name(mob).."")   end end when kill with not npc.is_pc() begin   local mob = pc.getqf("mob")   if mob == 0 or npc.get_race() ~= mob then return end     local count = pc.getqf("state") - 1   if count <= 20 then    pc.setqf("state", count)    q.set_counter("eventkill", -count)   end   if count == 0 then    local itens =  {{27005, 200},{27002, 200},{27006, 100},{27003, 100}}    local reward = number(1,table.getn(itens))    pc.give_item2(itens[reward][1], itens[reward][2]) pc.delqf("mob") pc.delqf("state")   end end end I've just fixed the errors, but this quest is still a sh!t. Look at a hunting quest and modify to your needs.
  4. ATAG's post in Metin2PakeMake type4 was marked as the answer   
    It's unable to unpack type4 packs with general unpackers. The only way (as i know) is the "unpacker for every client".
    http://metin2dev.org/board/topic/164-metin2-german-client-unpack/
  5. ATAG's post in PROBLEM WITH QUEST was marked as the answer   
    Try notice_in_map("my notice", 1)
     
    Second argument is 0 or 1 (false/true) means BIG_NOTICE (maybe)
  6. ATAG's post in Arena Manager... was marked as the answer   
    Are your map2 and arena on the same gamecore? (because they must be)
  7. ATAG's post in [SOLVED] Problem with LUA code when porting around ( using global vars in different Cores ) was marked as the answer   
    Try a debug version:
    when login begin local mapidx = pc.get_map_index() syschat("Map index: "..mapidx or "error") if 352 == mapidx then ...
×
×
  • 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.