Skocz do zawartości

Witamy w Nieoficjalnym polskim support'cie AMX Mod X

Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

Zdjęcie

Bomba_Explodegdy ct rozbroi pake to muza nieleci


  • Zamknięty Temat jest zamknięty
2 odpowiedzi w tym temacie

#1 Manniak

    Zaawansowany

  • Zbanowany

Reputacja: 6
Nowy

  • Postów:127
  • Lokalizacja:Warszawa
Offline

Napisano 24.02.2011 11:12

Proszę o przerobienie tego pluginu w taki sposob gdy ct rozbroi pake to muzyka nieleci i jest Bomb has been defused i tyle, bo tak to rozbroja i muza gra

#include <amxmodx>
#include <csx>

#define PLUGIN "Bomb Explode 3 Sounds"
#define VERSION "0.3"
#define AUTHOR "Simivar"

public bomb_exploding () {
    new losowo = random_num(0,2)
   
    switch(losowo) {
        case 0: client_cmd(0,"mp3 play sound/misc/bombasounds.mp3")
        case 1: client_cmd(0,"mp3 play sound/misc/bombasounds.mp3")
        case 2: client_cmd(0,"mp3 play sound/misc/bombasounds.mp3")
    }
}
#define czas 14
//

//

new g_c4timer, pointnum;
new bool:b_planted = false;

new g_msgsync;

public plugin_init()
{
/* --| Registering the plugin to show when you type amx_plugins.. */
register_plugin(PLUGIN,VERSION,AUTHOR);
/* --| Registering a little cvar to see wich servers using this plugin */
register_cvar( "be3s_version", VERSION, FCVAR_SERVER | FCVAR_SPONLY );

pointnum = get_cvar_pointer("mp_c4timer");

register_logevent("newRound", 2, "1=Round_Start");
register_logevent("endRound", 2, "1=Round_End");
register_logevent("endRound", 2, "1&Restart_Round_");

g_msgsync = CreateHudSyncObj();
}

public newRound()
{
g_c4timer = -1;
remove_task(652450);
b_planted = false;
}

public endRound()
{
g_c4timer = -1;
remove_task(652450);
}

public bomb_planted()
{
b_planted = true;
g_c4timer = get_pcvar_num(pointnum);
dispTime()
set_task(1.0, "dispTime", 652450, "", 0, "b");
}

public bomb_defused()
{
if(b_planted)
{
remove_task(652450);
b_planted = false;
}

}

public bomb_explode()
{
if(b_planted)
{
remove_task(652450);
b_planted = false;
}

}

public dispTime()
{
if(!b_planted)
{
remove_task(652450);
return;
}


if(g_c4timer >= 0)
{
if(g_c4timer > 25) {
set_hudmessage(0, 150, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);
}
else if(g_c4timer > 10) {
set_hudmessage(150, 150, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);
if(g_c4timer == czas) {
set_task(0.1, "bomb_exploding", 0)
}
}
else {
set_hudmessage(150, 0, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);
}

ShowSyncHudMsg(0, g_msgsync, "C4: %d", g_c4timer);

--g_c4timer;
}

}

public plugin_precache()
{
precache_sound("misc/bombasounds.mp3")
precache_sound("misc/bombasounds.mp3")
precache_sound("misc/bombasounds.mp3")

return PLUGIN_CONTINUE
}

Użytkownik Abes Mapper edytował ten post 24.02.2011 16:18


#2 Abes Mapper

    Repulsion Gel

  • Przyjaciel

Reputacja: 2 017
Godlike

  • Postów:7 356
  • Steam:steam
  • Imię:Sebastian
  • Lokalizacja:Sulejówek
Offline

Napisano 24.02.2011 16:21

#include <amxmodx>
#include <csx>

#define PLUGIN "Bomb Explode 3 Sounds"
#define VERSION "0.3"
#define AUTHOR "Simivar"

#define czas 14

new g_c4timer, pointnum;
new bool:b_planted = false;

new g_msgsync;

public plugin_init()
{
/* --| Registering the plugin to show when you type amx_plugins.. */
register_plugin(PLUGIN,VERSION,AUTHOR);
/* --| Registering a little cvar to see wich servers using this plugin */
register_cvar( "be3s_version", VERSION, FCVAR_SERVER | FCVAR_SPONLY );

pointnum = get_cvar_pointer("mp_c4timer");

register_logevent("newRound", 2, "1=Round_Start");
register_logevent("endRound", 2, "1=Round_End");
register_logevent("endRound", 2, "1&Restart_Round_");

g_msgsync = CreateHudSyncObj();
}

public newRound()
{
g_c4timer = -1;
remove_task(652450);
b_planted = false;
}

public endRound()
{
g_c4timer = -1;
remove_task(652450);
}

public bomb_planted()
{
b_planted = true;
g_c4timer = get_pcvar_num(pointnum);
dispTime()
set_task(1.0, "dispTime", 652450, "", 0, "b");
}

public bomb_defused()
{
if(b_planted)
{
remove_task(652450);
b_planted = false;
}

}

public bomb_explode()
{
if(b_planted)
{
remove_task(652450);
b_planted = false;
}

}

public dispTime()
{
if(!b_planted)
{
remove_task(652450);
return;
}


if(g_c4timer >= 0)
{
if(g_c4timer > 25) {
set_hudmessage(0, 150, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);
}
else if(g_c4timer > 10) {
set_hudmessage(150, 150, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);
if(g_c4timer == czas) {
}
}
else {
set_hudmessage(150, 0, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);
}

ShowSyncHudMsg(0, g_msgsync, "C4: %d", g_c4timer);

--g_c4timer;
}

}


+

'The bomb has been defused' sound - AlliedModders
  • +
  • -
  • 1

#3 Manniak

    Zaawansowany

  • Autor tematu
  • Zbanowany

Reputacja: 6
Nowy

  • Postów:127
  • Lokalizacja:Warszawa
Offline

Napisano 24.02.2011 16:32

ok, zaraz sprawdze

Użytkownik Manniak edytował ten post 24.02.2011 16:33





Użytkownicy przeglądający ten temat: 0

0 użytkowników, 0 gości, 0 anonimowych