#include #include #include #define PLUGIN "Lista prezentow" #define VERSION "1.0" #define AUTHOR "R3X" public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR) register_gift("Prezent#1", "Prezent_Numer1"); register_gift("Prezent#2", "Prezent_Numer2"); //Na poczatk rundy register_event("HLTV", "eventRoundInit", "a", "1=0", "2=0"); } public eventRoundInit() { gifts_clear_map(); set_task(5.0, "taskSpawnGift", 2368); } public taskSpawnGift() { gift_spawn(); } public Prezent_Numer1(id) { // przykładowy kod client_print(id, print_chat, "Podniosles prezent nr 1"); } public Prezent_Numer2(id) { // przykładowy kod client_print(id, print_chat, "Podniosles prezent nr 2"); }