AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   NELAN 2004 LAN Tournament, needs your scripting help!! (https://forums.alliedmods.net/showthread.php?t=1257)

QwertyAccess 04-21-2004 01:54

how much did you give him?

BigBaller 04-21-2004 02:58

AsskicR release it please ;) >? :)

AssKicR 04-21-2004 08:55

I will release it if Fullwave want me to... :)

Fullwave 04-21-2004 11:15

Feel free to release it! I appreciate all of your help.

IceMouse[WrG] 04-21-2004 16:22

Paid?! It's a fairly simple plugin! I've probably made it for people and forgot!

ThorW634 04-21-2004 19:38

release?

AssKicR 04-21-2004 20:45

Quote:

Originally Posted by IceMouse[WrG
]Paid?! It's a fairly simple plugin! I've probably made it for people and forgot!

well i asked him first as a joke if i could get a $ because i'm broke
he then asked how much i whould want for the plugin and i replied that he could give me whatever he felt was reasonable, and yes IceMouse it was a simple plugin...

Fullwave 04-21-2004 21:03

He was paid in full a reasonable amount of money for the plugin.

BigBaller 04-22-2004 00:25

Quote:

Originally Posted by AssKicR
I will release it if Fullwave want me to... :)

And he does

Quote:

Originally Posted by FullWave
Feel free to release it! I appreciate all of your help.

It sounds interesting as it is, I might want to check it out :D

AssKicR 04-22-2004 09:34

Code:
#include <amxmodx> new bool:gReady[33] = false new bool:gReStart = false new gReadyNum public plugin_init() {     register_plugin("Ready?","5.0","AssKicR")     register_clcmd("say","HandleSay")     register_cvar("sv_minplayers","9") } public HandleSay(id) {     new gText[192]     read_args(gText, 192)     remove_quotes(gText)     if(containi(gText,"ready")!=-1) {         if(!gReady[id]) {             if(get_playersnum()>=get_cvar_num("sv_minplayers")) {                 gReady[id] = true                 gReadyNum += 1                 client_print(0,print_chat,"[AMXX] %i/%i are Ready...",gReadyNum,get_playersnum())             }else{                 client_print(id,print_chat,"[AMXX] Need more players to go live.")             }         }else{             client_print(id,print_chat,"[AMXX] You are already Ready.")         }     }     if (gReadyNum==get_playersnum() && !gReStart) {         gReStart = true         client_print(0,print_chat,"[AMXX] GOING LIVE ON THREE RESTARTS")         //client_cmd(0,"spk ambience/siren.wav") //UNCOMMENT THIS LINE FOR A NICE SOUND EFFECT         set_task( 5.0, "RestartRound1" ) //first restart         set_task( 9.0, "RestartRound2" ) //second restart         set_task( 11.0,"RestartRound3" ) //final restart         set_task( 17.0,"goLIVE") //go live     } } public RestartRound1() {     server_cmd( "sv_restartround 1") } public RestartRound2() {     server_cmd( "sv_restartround 1") } public RestartRound3() {     server_cmd( "sv_restartround 5") } public goLIVE() {     client_print(0,print_chat,"[AMXX] MATCH IS NOW LIVE!")     client_print(0,print_center,"MATCH IS NOW LIVE!")     gReadyNum=0     gReStart = false     for( new id=0 ; id>33 ; id++ )         gReady[id]=false }


All times are GMT -4. The time now is 07:03.

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