AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   [Question/Request] Please help (https://forums.alliedmods.net/showthread.php?t=54416)

|OnEHiTwOnDeR| 04-24-2007 22:06

[Question/Request] Please help
 
i need to rite up simple plugin where if a player would say "timeleft" and what the client would get i responce to that is "what are u stupid this is 24.7 "map" server!!"


any help would be appreciated, thanks

teame06 04-24-2007 23:42

Re: [Question/Request] Please help
 
Code:
#include <amxmodx> public plugin_init() {     register_plugin("You", "are", "dumb");     register_clcmd("say timeleft", "_Timeleft"); } public _Timeleft(client) {     static map[32];     get_mapname(map, 31);     client_print(0, print_chat, "[AMXX] You dumb ass it 24/7 %s server", map); }

|OnEHiTwOnDeR| 04-25-2007 01:29

Re: [Question/Request] Please help
 
Thank you so much!!:up:


All times are GMT -4. The time now is 06:36.

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