View Single Post
Author Message
NiceGuyx
Senior Member
Join Date: Nov 2011
Old 08-15-2012 , 15:56   Plzz i need help my plugin won't work
Reply With Quote #1

Hello, please
I want from my plugin to execute the command fly_users after 45minutes after the first round, but this plugin execute the command fly_users at the first round

PHP Code:
#include <amxmodx>
#include <amxmisc>

new PLUGIN[]="FLY"
new AUTHOR[]="RTV"
new VERSION[]="1.0"

public plugin_init()
{
     
register_plugin(PLUGINVERSIONAUTHOR)

     
register_logevent("round_first"2"0=World triggered""1=Game_Commencing")

}
 
public 
round_first()
{

set_task(2700"fly"0)

}

public 
fly()
{

server_cmd("fly_users")


NiceGuyx is offline