Witam.
Chciałbym prosić o napisanie pluginu który na początku nowej rundy będzie pisał:
1 runda: dzien 1
2 runda: dzien 2
3 runda: dzien 3
4 runda: dzien 4
5 runda: dzien 5
.......
......
.......
Tak jak na screenie:
Za pomoc gibon :)
|
|
Witam.
Chciałbym prosić o napisanie pluginu który na początku nowej rundy będzie pisał:
1 runda: dzien 1
2 runda: dzien 2
3 runda: dzien 3
4 runda: dzien 4
5 runda: dzien 5
.......
......
.......
Tak jak na screenie:
Za pomoc gibon :)
</span>Kod php:/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Nowy Plugin"
#define VERSION "1.0"
#define AUTHOR "Sn!ff3r"
new rounds
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("round_end", 2, "1=Round_End")
register_logevent("round_start", 2, "1=Round_Start")
register_event("TextMsg","restart_roundsnum","a","2&#Game_C","2&#Game_w")
}
public round_end()
{
rounds++
}
public restart_roundsnum() rounds = 0
public round_start()
{
set_hudmessage(255, 0, 0, -1.0, 0.2, 0, 6.0, 5.0)
ShowSyncHudMsg(0, CreateHudSyncObj(), "Dzien %d", rounds)
}
| « Przerobienie pluginu HP | Prosba o Napisanie plugina » |