Re: Gal zinot kaip vadinas ?
Posted: 2014 Oct 20 22:25
google biski pasinaudok
artiom555 wrote:Toks mandras? nei 1 pamokos neradau kaip sujunkt zombie plague 1.6 advance moda su gun xp...
Code: Select all
#include <amxmodx> public plugin_init() { register_plugin("Test", "TestVersion", "TestAuthor"); register_event("DeathMsg", "eventDeathMsg", "a", "1!0");} public eventDeathMsg(){ static iKiller, iVictim, iHs; iKiller = read_data(1); // Žudikas iVictim = read_data(2); // Auka iHs = read_data(3); // Ar hs if (iKiller != iVictim && get_user_team(iVictim) == 1){ // Ar savę neužmušė ir ar užmuštasis yra T set_hudmessage(0, 255, 0, -1.0, -1.0, 0, 1.0, 1.0, 0.1, 0.1, 4); if (iHs) show_hudmessage(iKiller, "+%d xp", tavo_exp_ant_hs_kill); // Jei HS else show_hudmessage(iKiller, "+%d xp", tavo_exp_ant_kill); // Jei ne HS // Jei už HS neskiri papildomo tai lieka tik // // set_hudmessage(0, 255, 0, -1.0, -1.0, 0, 1.0, 1.0, 0.1, 0.1, 4); // show_hudmessage(iKiller, "+%d xp", tavo_exp_ant_kill); } }