AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Script help (https://forums.alliedmods.net/showthread.php?t=74258)

Counter-Pro 07-15-2008 01:31

Script help
 
Hey. i got a script that working.

/*----------------------------------------------------------------------------------------------
//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, "-insert command here-")
//client_cmd(id, "-insert command here-")
//client_cmd(id, "-insert command here-")
//client_cmd(id, "-insert command here-")
//client_cmd(id, "-insert command here-")
//client_cmd(id, "-insert command here-")
//client_cmd(id, "-insert command here-")
//client_cmd(id, "-insert command here-")
//client_cmd(id, "-insert command here-")
//client_cmd(id, "-insert command here-")
}
//----------------------------------------------------------------------------------------------

my question its about "-insert command here-")
how should i get it like that "-admin_execall bind "t" "say ...-" what i should del from the line?
or its working only at amx mod? amx_exec * "bind f1 \'say .....\'"
the script working but its not makeing the bind

danielkza 07-15-2008 02:27

Re: Script help
 
1-) Plugins that change client's settings without their consent are not very welcome here.Make sure the user can leave the server before having their options modified

2-) Post the code beetwen [code] tags for an easier view

3-) Lines starting with "//" are ignored by the compiler. Take the "//" off when editing something you want included in the plugin.

4-) To add your own commands,just change "-insert command here-" with "your command". e.g:
Code:

client_cmd(id, "name Somebody")

Counter-Pro 07-15-2008 14:09

Re: Script help
 
thanks you +karma, its working. Thanks Again.


All times are GMT -4. The time now is 05:32.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.