AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   [JailBreak] WaTer PisTols (https://forums.alliedmods.net/showthread.php?t=238184)

PreFex Pro 04-05-2014 17:55

[JailBreak] WaTer PisTols
 
I Need The Game Water Pistols Plz

Killermen 03-12-2016 09:19

Re: [JailBreak] WaTer PisTols
 
Hi :D
Like My Page Facebook Free Mod And PLugins
https://www.facebook.com/Amazing.Skiller.officiel
Go To Google And get Plugin amx_give_water :D And Add in Your Mod
Quote:

#include <amxmodx>
#include <amxmisc>
#include <engine>
#include <fakemeta>
#include <xs>
#include <hamsandwich>
#include <fun>
#include <cstrike>
#include <fakemeta_util>
#include <Colorchat>
#define PLUGIN "Test Water"
#define VERSION "1.0"
#define AUTHOR "KilLeR MeN =)"
new szName[33];
new bool:g_bWater;
new g_RoundEnd;
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)

register_clcmd("say /water", "Water");
}
public Water( id )
{
if( cs_get_user_team( id ) != CS_TEAM_CT || !is_user_alive( id ) || g_bWater )
return PLUGIN_HANDLED;

set_hudmessage( random(256), random(255), random(250), -1.0, 0.25, 2, 6.0, 3.0, 0.1, 1.5 );
show_hudmessage( 0, "[AS] WaterPistol Battle Begin !!!")

get_user_name(id, szName, 32)
client_cmd( 0, "mp3 loop ^"sound/AS-Prison_Break/Game/WateR1.mp3^"" );
get_user_name(id, szName, 32)
ColorChat(0, RED, "^3[AS]^4[Prison-Break] ^3Guard: ^4%s ^3Start ^4WaterPistol Battle ^3Day !!" ,szName)
server_cmd("amx_water_give ^"@all^" ^"99999^"")
g_bWater = true;

new iPlayers[ 32 ], iNum;
get_players( iPlayers, iNum, "ae", "CT" );


new iPlayers2[ 32 ], zNum;
get_players( iPlayers2, zNum, "ae", "TERRORIST" );


for( new z = 0, iPlayer2; z < zNum; z++ )
{
iPlayer2 = iPlayers2[ z ];
set_user_health(iPlayer2, 200);
}

for( new i = 0, iPlayer; i < iNum; i++ )
{
iPlayer = iPlayers[ i ];
set_user_health(iPlayer, 200);
}
return PLUGIN_HANDLED;
}
public round_start()
{
if(g_RoundEnd)
return
g_bWater = false;

}


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

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