|
zamotka pluginów ziom
Klejson* - 27.01.2010 19:09
zamotka pluginów ziom
Elo poszukuje następujących pluginów :
1.Dżwięk headshota po strzale;
2.Pokazuje kto został oślepiony ze swojego teamu;
np.~ Zostałeś oślepiony przez Xxxxxxx ~
3.Pokazuje wynik najlepszego ziomka w rundzie najlepiej w miejscu gdzie say;
4.Paka odlatuje po strzale;
Z góry dziękuje ;;
ZoMM - 27.01.2010 23:45
1.
Kod:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Headshot Kill!"
#define VERSION "1.0"
#define AUTHOR "Sn!ff3r"
new const sound[]="misc/headshot.wav"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("DeathMsg","hs","a","3=1")
}
public hs()
client_cmd(0,"spk %s",sound)
public plugin_precache()
precache_sound(sound)
2. Team Flash Snitch - AlliedModders
3. --
4. http://dl2.fileswap.com/download/?id...lTafil1ti28%3D
kASTET - 28.01.2010 08:24
Co do punktu 3. Łapaj:
Kod:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <csx>
#define PLUGIN "Nowy Plugin"
#define VERSION "1.0"
#define AUTHOR "Sn!ff3r"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("round_end", 2, "1=Round_End");
}
public round_end()
{
static stats[8], bodyhits[8], players[32], bestscore = 0, bestplayer, besths, num, i
get_players(players, num, "h")
for(i = 0; i <= num; i++)
{
get_user_rstats(players[i], stats, bodyhits)
if(stats[0] > bestscore)
{
bestscore = stats[0]
bestplayer = players[i]
besths = stats[2]
}
}
if(is_user_connected(bestplayer))
{
static name[33]
get_user_name(bestplayer, name, 32)
client_print(0, print_chat, "*** Najlepszym graczem rundy jest %s! ***", name)
client_print(0, print_chat, "*** Zabil %d graczy, w tym %d headshot'ow ***", bestscore, besths)
}
else
{
client_print(0, print_chat, "*** Brak najlepszego gracza rundy... ***")
}
}
Screen:
http://img35.imageshack.us/img35/6011/minsk.png
Klejson* - 28.01.2010 11:07
Dzięki KasteT i ZoMM za okazałą wam pomoc ;)
zanotowane.pldoc.pisz.plpdf.pisz.plqup.pev.pl
|