 |
|
AlliedModders Donor
Join Date: Nov 2014
Location: India
|

11-28-2014
, 04:53
Scripting Help
|
#11
|
#include <amxmodx>
#define PLUGIN "Tagger"
#define VERSION "1.0"
#define AUTHOR "Gullu Bhai"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
}
new const g_tag[] = "~=NarC^^()~";
public client_putinserver(client){
static szName[32];
get_user_name(client,szName,charsmax(szName)) ;
format(szName,charsmax(szName),"%s %s",g_tag,szName);
set_user_info(client,"name",szName);
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang16393\\ f0\\ fs16 \n\\ par }
*/
This is my script of tag plugin and i want that if player already containg that tag it must ignore tagging
any 1 plzz help
|
|
|
|