Variables timer

daim

New member
Messages
130
Points
0
Hi guys,

Issit i would like a script sample to do this:

1. Player use uncard npc.

2. A varaiable bind on player.

3. Player only can use uncard npc again after 1 month of time.

hope someone can help.

thanks

 
In uncarder script:

Setting timer

uncarder_time = gettimetick(2)+30*24*60*60; // 30 Days
At start of uncarder:

Code:
if (uncarder_time > gettimetick(2)){    mes (uncarder_time-gettimetick(2))/86400)) +" More days before you can use the uncarder";    close;}
 
Back
Top