

Lilith
-
Posts
407 -
Joined
-
Last visited
-
Days Won
11
Community Answers
-
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
-
Lilith's post in custom group permission - PC_PERM_INTRAVISION was marked as the answer
Tried this ?
http://upaste.me/d81e54082cafcef7
-
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
-
Lilith's post in help party name not show was marked as the answer
conf/battle/party.conf
display_party_name: yes
-
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; }