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
 

Kaco123 - zdjęcie

Kaco123

Rejestracja: 07.03.2009
Aktualnie: Nieaktywny
Poza forum Ostatnio: 16.07.2010 20:56
-----

Moje posty

W temacie: Przerobka ROund STart REstart

16.04.2010 21:49

oo to tez sie przyda dzięki ;)

W temacie: Przerobka ROund STart REstart

16.04.2010 19:56

hehe dzięki dziala !

W temacie: Przerobka ROund STart REstart

16.04.2010 17:38

#include <amxmodx>             // AMX Mod X
#include <amxmisc>

new czas = 80
new pokaz_czas
new restart_title[1][] = {
        "*Looney-Tunes FFA*"
}

public plugin_init() 
{ 
        register_plugin("ROund STart REstart","1.0","deLL")
        set_task(5.0,"restart_odlicz", 0) 

        return PLUGIN_CONTINUE 
}


public restart_odlicz(){
        unpause("ac","switchweapon.amxx")

        new configsDir[64]
        get_configsdir(configsDir, 63)
        server_cmd("exec %s/niegra.cfg", configsDir)

        set_task(17.0,"muza_on", 0)
        set_task(54.0,"wywal_noz", 0)
        set_task(55.0,"restart_rundy_1", 0)
        set_task(57.0,"restart_rundy_2", 0) 
        set_task(59.0,"restart_rundy_3", 0) 
        set_task(62.0,"restart_rundy_play", 0) 

        set_task(60.0,"restart_rundy", 0) 
        set_task(1.0,"wyswietl_res",8188,"",0,"b")

}

public muza_on(){
        client_cmd(0,"mp3 stop")
        client_cmd(0,"mp3 play sound/misc/play_muza")
}

public wywal_noz(){
        pause("ac","switchweapon.amxx")
}

public wyswietl_res(){

        new jac1=random_num(0,255)
        new jac2=random_num(0,255)
        new jac3=random_num(0,255)      
        pokaz_czas = czas

        set_hudmessage(jac1, jac2, jac3, 0.65, 0.75, 2, 0.02, 1.0, 0.01, 0.1, 10)  
        show_hudmessage(0,"==================^n* %s *^nRESTART ZA: %i sec^n==================", restart_title, pokaz_czas) 
        czas--

/*
        message_begin(MSG_ALL, get_user_msgid("ScreenFade"), {0,0,0}, 0)
        write_short( 1<<10 ) // fade lasts this long duration
        write_short( 1<<10 ) // fade lasts this long hold time
        write_short( 1<<12 ) // fade type (in / out)
        write_byte( jac1 ) // fade red
        write_byte( jac2 ) // fade green
        write_byte( jac3 ) // fade blue
        write_byte( 50 ) // fade alpha
        message_end()
*/
}

public restart_rundy_play(){
        set_hudmessage(10, 255, 40, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 4)
        show_hudmessage(0,"=============^n*Zyczymy duzo fragow*^n=============")
}


public restart_rundy(){
        client_cmd(0,"mp3 paly sound/misc/reset")
        server_cmd("sv_restart 1")

}

public restart_rundy_1(){
        remove_task(8188)
        czas = 60
        set_hudmessage(10, 255, 40, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 4)
        show_hudmessage(0,"3")
        client_cmd(0,"mp3 paly sound/misc/three")
}

public restart_rundy_2(){
        set_hudmessage(10, 255, 40, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 4)
        show_hudmessage(0,"2")
        client_cmd(0,"mp3 play sound/misc/two")

}

public restart_rundy_3(){
        new configsDir[64]
        get_configsdir(configsDir, 63)
        server_cmd("exec %s/gra.cfg", configsDir)
        set_hudmessage(10, 255, 40, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 4)
        show_hudmessage(0,"1")
        client_cmd(0,"mp3 play sound/misc/one")
}

public plugin_precache() 
{
    precache_sound("misc/play_muza.mp3")
    precache_sound("misc/three.mp3")
    precache_sound("misc/two.mp3")
    precache_sound("misc/one.mp3")
    precache_sound("misc/reset.mp3")

    return PLUGIN_CONTINUE
}


Przekonwerterowalem to sma i dalej nie dziala tak jak powinno
Jutro pokaze logi moze cos to pomoze

16 kwiecień 2010 - 18:38:
W logach nic nie ma;/

W temacie: Przerobka ROund STart REstart

15.04.2010 17:51

#include <amxmodx> // AMX Mod X
#include <amxmisc>

new czas = 80
new pokaz_czas
new restart_title[1][] = {
"*Looney-Tunes FFA*"
}

public plugin_init()
{
register_plugin("ROund STart REstart","1.0","deLL")
set_task(5.0,"restart_odlicz", 0)

return PLUGIN_CONTINUE
}


public restart_odlicz(){
unpause("ac","switchweapon.amxx")

new configsDir[64]
get_configsdir(configsDir, 63)
server_cmd("exec %s/niegra.cfg", configsDir)

set_task(17.0,"muza_on", 0)
set_task(54.0,"wywal_noz", 0)
set_task(55.0,"restart_rundy_1", 0)
set_task(57.0,"restart_rundy_2", 0)
set_task(59.0,"restart_rundy_3", 0)
set_task(62.0,"restart_rundy_play", 0)

set_task(60.0,"restart_rundy", 0)
set_task(1.0,"wyswietl_res",8188,"",0,"b")

}

public muza_on(){
client_cmd(0,"mp3 play sound/misc/play_muza")
}

public wywal_noz(){
pause("ac","switchweapon.amxx")
}

public wyswietl_res(){

new jac1=random_num(0,255)
new jac2=random_num(0,255)
new jac3=random_num(0,255)
pokaz_czas = czas

set_hudmessage(jac1, jac2, jac3, 0.65, 0.75, 2, 0.02, 1.0, 0.01, 0.1, 10)
show_hudmessage(0,"==================^n* %s *^nRESTART ZA: %i sec^n==================", restart_title, pokaz_czas)
czas--

/*
message_begin(MSG_ALL, get_user_msgid("ScreenFade"), {0,0,0}, 0)
write_short( 1<<10 ) // fade lasts this long duration
write_short( 1<<10 ) // fade lasts this long hold time
write_short( 1<<12 ) // fade type (in / out)
write_byte( jac1 ) // fade red
write_byte( jac2 ) // fade green
write_byte( jac3 ) // fade blue
write_byte( 50 ) // fade alpha
message_end()
*/
}

public restart_rundy_play(){
set_hudmessage(10, 255, 40, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 4)
show_hudmessage(0,"=============^n*Zyczymy duzo fragow*^n=============")
}


public restart_rundy(){
client_cmd(0,"mp3 paly sound/misc/reset")
server_cmd("sv_restart 1")

}

public restart_rundy_1(){
remove_task(8188)
czas = 60
set_hudmessage(10, 255, 40, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 4)
show_hudmessage(0,"3")
client_cmd(0,"mp3 paly sound/misc/three")
}

public restart_rundy_2(){
set_hudmessage(10, 255, 40, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 4)
show_hudmessage(0,"2")
client_cmd(0,"mp3 play sound/misc/two")

}

public restart_rundy_3(){
new configsDir[64]
get_configsdir(configsDir, 63)
server_cmd("exec %s/gra.cfg", configsDir)
set_hudmessage(10, 255, 40, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 4)
show_hudmessage(0,"1")
client_cmd(0,"mp3 play sound/misc/one")
}

public plugin_precache()
{
precache_sound("misc/play_muza.mp3")
precache_sound("misc/three.mp3")
precache_sound("misc/two.mp3")
precache_sound("misc/one.mp3")
precache_sound("misc/reset.mp3")

return PLUGIN_CONTINUE
}



To jest moje SMA pokasowalem to, ale z tymi taskami to nie wiem o co kaman, moglbys to zrobic?

W temacie: Przerobka ROund STart REstart

13.04.2010 16:36

Sorry, ze tak cie "wykorzystuje" ale potem juz będę widzial
Dziekuje za pomoc

13 kwiecień 2010 - 17:36:
To jeden problem rozwiazany jest jescze jeden muzyka sie odtwarza i wszystko ale konczy sie po uplynieciu kolo 30 sekund