Jump to content

Lilith

Members
  • Posts

    407
  • Joined

  • Last visited

  • Days Won

    11

Community Answers

  1. Lilith's post in Input at msg_conf doesn't work on langtype 0 was marked as the answer   
    Because max count of messages in map-server is 1500.
    src/map/map.c
    #define MAP_MAX_MSG 1500 Just increase this define if u need
  2. Lilith's post in custom group permission - PC_PERM_INTRAVISION was marked as the answer   
    Tried this ?
    http://upaste.me/d81e54082cafcef7
  3. Lilith's post in Different EXP Rate for different classes was marked as the answer   
    You can use this src: link
    but modify for yourself
  4. Lilith's post in help party name not show was marked as the answer   
    conf/battle/party.conf
    display_party_name: yes
  5. Lilith's post in Cash Shop Problem was marked as the answer   
    See this. May be it helps you.
  6. Lilith's post in [Request] Check if the item is rental was marked as the answer   
    Try this. Not tested.

    callfunc "F_Expire",Item_id; map,x,y,z script name 100,{ input @ids; if(callfunc("F_Expire",@ids)>0) mes "Item "+getitemname(@ids)+" is rental"; else mes "Item "+getitemname(@ids)+" is not rental"; close; } function script F_Expire { getinventorylist; for( set .@a,0; .@a < getarraysize(@inventorylist_id); set .@a,.@a+1) if(getarg(0) == @inventorylist_id[.@a] && @inventorylist_expire[.@a] > 0) return 1; else return 0; }
×
×
  • Create New...