Anyone know how to make a plugin (give items for every player each day (only for had login)) sorry my bad English.
$this->api->schedule(24*60*60*20, array($this, "random")); public function random(){ //random item code here }
1. Install RandomItem. 2. Modify the config file named "interval.txt" so that it says "86400". 3. Restart your server.
$this->api->schedule(TIME IN TICKS,array($this,"FUNCTION NAME"),array(SAME TIME IN TICKS),true,"server.schedule");
@LDX So then.. I can use Code: $this->api->schedule(20,array($this,"test"),array(20),true,"server.schedule"); or Code: $this->api->schedule(20,array($this,"FUNCTION NAME")); ?