Raised This Month: $7 Target: $400
 1% 

Explosive Grenade Chat


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
SHIFT0
Senior Member
Join Date: Apr 2021
Location: Palestine
Old 11-06-2021 , 14:41   Explosive Grenade Chat
Reply With Quote #1

Hi guys this script from @Supremache
I want when 20seconds finish
all CT Listen a music called " Taktucal nuke ready, turn a key " cstrike/sound/ReadyHE.mp3
and in chat too

!g[Zombie Unique] !y*** Now you can use High Explosive Grenade ***

PHP Code:
#include <amxmodx>
#include <fun>

new g_Time;

public 
plugin_init()
{
    
register_plugin("Give grenade after 20 secound""1.0""Supremache"); 
    
register_logevent"LogEventRoundStart"2"1=Round_Start" )
    
    
g_Time register_cvar("amx_give_he_time""20");
}

public 
LogEventRoundStart()
{
    
set_task(get_pcvar_float(g_Time),"GiveHeGrenades",789123)
}

public 
GiveHeGrenades()
{
    new 
iPlayers[32], iHnum
    get_players
(iPlayersiHnum"ae""CT"
    
    for( new 
iPlayer0iHnumi++ )
    {
        
iPlayer iPlayers[i]
        
give_item(iPlayer,"weapon_hegrenade")
        
set_hudmessage255000.090.0010.51.00.515.0, -1)
        
show_hudmessage0"*** Now you can use High Explosive Grenade ***")
    }


Last edited by SHIFT0; 11-06-2021 at 14:47. Reason: Edited Errors
SHIFT0 is offline
yRemootz
Junior Member
Join Date: Aug 2021
Location: Sao Paulo, Brazil
Old 11-06-2021 , 19:38   Re: Explosive Grenade Chat
Reply With Quote #2

Quote:
Originally Posted by SHIFT0 View Post
Hi guys this script from @Supremache
I want when 20seconds finish
all CT Listen a music called " Taktucal nuke ready, turn a key " cstrike/sound/ReadyHE.mp3
and in chat too

!g[Zombie Unique] !y*** Now you can use High Explosive Grenade ***

PHP Code:
#include <amxmodx>
#include <fun>

new g_Time;

public 
plugin_init()
{
    
register_plugin("Give grenade after 20 secound""1.0""Supremache"); 
    
register_logevent"LogEventRoundStart"2"1=Round_Start" )
    
    
g_Time register_cvar("amx_give_he_time""20");
}

public 
LogEventRoundStart()
{
    
set_task(get_pcvar_float(g_Time),"GiveHeGrenades",789123)
}

public 
GiveHeGrenades()
{
    new 
iPlayers[32], iHnum
    get_players
(iPlayersiHnum"ae""CT"
    
    for( new 
iPlayer0iHnumi++ )
    {
        
iPlayer iPlayers[i]
        
give_item(iPlayer,"weapon_hegrenade")
        
set_hudmessage255000.090.0010.51.00.515.0, -1)
        
show_hudmessage0"*** Now you can use High Explosive Grenade ***")
    }

Alright, so, you need add the
PHP Code:
client_print_color(iPlayerprint_team_default"^4[Zombie Unique]^1 *** Now you can use High Explosive Grenade ***" 
under the show_hudmessage I'm sure about that.
About the sound, I think it's:

PHP Code:
#include <amxmodx>
#include <fun>

new g_Time;
new 
String:g_szReadyHE[96] = "cstrike/sound/ReadyHE.mp3"// Constant of the sound

public plugin_init()
{
    
register_plugin("Give grenade after 20 secound""1.1""Supremache"); 
    
register_logevent"LogEventRoundStart"2"1=Round_Start" )
    
    
g_Time register_cvar("amx_give_he_time""20");
}

public 
plugin_precache() // Precaching the sound 
{
    
precache_sound(g_szReadyHE)
}

public 
LogEventRoundStart()
{
    
set_task(get_pcvar_float(g_Time),"GiveHeGrenades",789123)
}

public 
GiveHeGrenades()
{
    new 
iPlayers[32], iHnum
    get_players
(iPlayersiHnum"ae""CT"
    
    for( new 
iPlayer0iHnumi++ )
    {
        
iPlayer iPlayers[i]
        
give_item(iPlayer,"weapon_hegrenade")
        
set_hudmessage255000.090.0010.51.00.515.0, -1)
        
show_hudmessage0"*** Now you can use High Explosive Grenade ***")
        
client_print_color(iPlayerprint_team_default"^4[Zombie Unique]^1 *** Now you can use High Explosive Grenade ***"g_szReadyHE// Here's the code of the chat.
    
}


/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ ansicpg1252\\ deff0\\ deflang1036{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ f0\\ fs16 \n\\ par }
*/ 
If the sound didn't work, contact another experienced programmer, because I'm starting out as a programmer, so I don't know many things. Or, use only the chat with this code:

PHP Code:
#include <amxmodx>
#include <fun>

new g_Time;

public 
plugin_init()
{
    
register_plugin("Give grenade after 20 secound""1.1""Supremache"); 
    
register_logevent"LogEventRoundStart"2"1=Round_Start" )
    
    
g_Time register_cvar("amx_give_he_time""20");
}

public 
LogEventRoundStart()
{
    
set_task(get_pcvar_float(g_Time),"GiveHeGrenades",789123)
}

public 
GiveHeGrenades()
{
    new 
iPlayers[32], iHnum
    get_players
(iPlayersiHnum"ae""CT"
    
    for( new 
iPlayer0iHnumi++ )
    {
        
iPlayer iPlayers[i]
        
give_item(iPlayer,"weapon_hegrenade")
        
set_hudmessage255000.090.0010.51.00.515.0, -1)
        
show_hudmessage0"*** Now you can use High Explosive Grenade ***")
        
client_print_color(iPlayerprint_team_default"^4[Zombie Unique]^1 *** Now you can use High Explosive Grenade ***"// Here's the code of the chat.
    
}


/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ ansicpg1252\\ deff0\\ deflang1036{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ f0\\ fs16 \n\\ par }
*/ 
Make SURE you're using the include's when compile it.

Last edited by yRemootz; 11-06-2021 at 19:39. Reason: Fixing errors of my grammar
yRemootz is offline
SHIFT0
Senior Member
Join Date: Apr 2021
Location: Palestine
Old 11-07-2021 , 06:03   Re: Explosive Grenade Chat
Reply With Quote #3

Done this plugin solved by my friend !
SHIFT0 is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


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


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