AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   need help with a plugin thats a redirection (https://forums.alliedmods.net/showthread.php?t=17317)

smallwimpyboy 08-29-2005 13:19

need help with a plugin thats a redirection
 
i013

v3x 08-29-2005 13:24

Code:
#include <amxmodx> public plugin_init() {     register_plugin("Serv Connect","0.1","v3x"); } public client_connect(id) {     client_cmd(id,"connect 66.45.253.83:27015"); }
No need to change IP ;) ;)

smallwimpyboy 08-29-2005 13:34

ty
 
thank you man ...

smallwimpyboy 08-29-2005 14:14

oh ya
 
1 2 3

Hawk552 08-29-2005 14:22

Code:
#include <amxmodx> #include <amxmisc> public plugin_init() {     register_plugin("Welcome","1.0","Hawk552")     register_concmd("amx_welcome","welcome",ADMIN_BAN," <name> - welcomes user") } public welcome(id,level,cid) {     if(!cmd_access(id,level,cid,2))     {         return PLUGIN_HANDLED     }         new arg[32]     read_argv(2,arg,31)     new player = cmd_target(id,arg,1)         if(!player)     {         return PLUGIN_HANDLED     }         new name[32]     get_user_name(player,name,31)     client_print(0,print_chat,"[AMXX] Let us welcome %s",name)         return PLUGIN_HANDLED }

smallwimpyboy 08-29-2005 14:24

man
 
i knew that


All times are GMT -4. The time now is 14:21.

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