|
Author
|
Message
|
|
BANNED
|

07-16-2008
, 12:20
Error 017 <Please Help Me To Fix It> Thanks.
|
#1
|
Hey, i got a new plugin
script :
/*----------------------------------------------------------------------------------------------
//Desciption
//----------------------------------------------------------------------------------------------
--- With this plugin you are able to forcibly input commands into connecting clients' console...
Many functions:
- Reset clients' maxspeeds...
- Re-bind stuff...
- Re-name them (Muahahahaha...xD)
- etc.
--- CVAR (Copy & Paste to server.cfg or amxx.cfg)
//Admin Client Commands
amx_acc 1 //Set to 1 to ON ; Set to 0 to OFF
//--------------------------------------------------------------------------------------------*/
//----------------------------------------------------------------------------------------------
//Version History
//----------------------------------------------------------------------------------------------
#define VERSION 1.0 //Define Current Version...
/*
1.0 - 28/6/08 - Streamy - Initial Release
*/
//----------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------
//Includes
//----------------------------------------------------------------------------------------------
#include <amxmodx>
#include <amxmisc>
//----------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------
//Pcvar
//----------------------------------------------------------------------------------------------
new is_it_on
//----------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------
//Defines
//----------------------------------------------------------------------------------------------
#define ADMIN ADMIN_IMMUNITY //Define the level of admin required to be immune to this
//----------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------
public plugin_init()
{
register_plugin("Admin Client Commands", "VERSION", "Streamy")
is_it_on = register_cvar("amx_acc", "1")
}
//----------------------------------------------------------------------------------------------
public client_putinserver(id)
{
if(!get_pcvar_num(is_it_on) || !is_user_connected(id) || is_user_bot(id))
return PLUGIN_HANDLED
if(!access(id, ADMIN)) { //Make sure user is not an admin...
set_task(5.0, "input", id) //Wait a lil for better effects (trust me on this)
}
return PLUGIN_HANDLED
}
//----------------------------------------------------------------------------------------------
public input(id) //This function handles the client commands...
{
//Add Commands here...
client_cmd(id, bind t "say hi")
}
//----------------------------------------------------------------------------------------------
look at here
//Add Commands here...
client_cmd(id, bind t "say hi")
i try to compile it, but its say Undefined symbol "bind"
" " " " " <Compile Failed>
Can someone help me please?
That script should bind connect player automatic. i wish to know why its cannot be compile, if i change to its
//Add Commands here...
client_cmd(id, "name someone")
its working but with bind its not
Thanks You.!
|
|
|
|