Jump to content

testtest

Inactive Member
  • Posts

    20
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by testtest

  1. Duello event 

     

     

    Hallo

     

    This Is For Block Item's In Map :

     

    Beeter Then Quest :

     

     

    char_item.cpp

     

    Serch :

    static bool IS_SUMMON_ITEM(int vnum)
    

    after it add  :

    static bool IS_ENABLE_ITEM(int vnum)
    {
        switch (vnum)
        {
            case 39011:
            case 39012:
            case 39013:
                return true;
        }
    
        return false;
    }
     
    

    39011,39012,39013 Item's Want To Block It

     

     

    Uz9tpON.png

     

    Serch :

    bool IS_BOTARYABLE_ZONE(int nMapIndex)
    [code]
     
    Befor IT Add
     
    [code]
    bool IS_ENABLE_ITEM_ZONE(int map_index)
    {
        switch (map_index)
        {
            case 29:
            case 30:
            case 31:
                return false;
        }
    
        return true;
    }
    
    [/code]
     
    29,30,31 Maps Index
     
    
     
     
     
    Serch :
     
    [code]
    //PREVENT_TRADE_WINDOW
    [/code]
     
    Befor It Add :
     
    [code]
        if (IS_ENABLE_ITEM(item->GetVnum()))
        {
            if (false == IS_ENABLE_ITEM_ZONE(GetMapIndex()))
            {
                ChatPacket(CHAT_TYPE_INFO, LC_TEXT("»ç؟ëاز¼ِ ¾ّ½ہ´د´ظ."));
                return false;
            }
        }
    

    tGYQ5G2.png

     

     

    Note : This System By MrLibya , For www.Arab-Dev.Org , Ida
     

    he want do it in a archive txt in the server not in the source, but is a nice idea

     

    How do we close the duel activity in blessing others shamans character feature? So locking ability .

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