

Jeżeli jest taka możliwość to prosiłbym też o model granatu oślepiającego
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.
|
Napisano 15.07.2011 12:52


Napisano 15.07.2011 13:55
www.BartoIT.pl
- klikasz to, a dzięki temu rozwijam ten profil
Odwiedź strefę pobierania i pobierz wersję testową alfa Counter Strike: Global terror MOD
Napisano 15.07.2011 15:05
Napisano 15.07.2011 15:07
Napisano 15.07.2011 17:09
Napisano 15.07.2011 17:22
Użytkownik SAS edytował ten post 15.07.2011 17:30
www.BartoIT.pl
- klikasz to, a dzięki temu rozwijam ten profil
Odwiedź strefę pobierania i pobierz wersję testową alfa Counter Strike: Global terror MOD
Napisano 15.07.2011 17:25
Napisano 15.07.2011 17:50
Napisano 15.07.2011 17:52
www.BartoIT.pl
- klikasz to, a dzięki temu rozwijam ten profil
Odwiedź strefę pobierania i pobierz wersję testową alfa Counter Strike: Global terror MOD
Napisano 16.07.2011 07:22
Napisano 16.07.2011 07:27
Napisano 16.07.2011 07:33
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <fakemeta>
#include <cstrike>
#include <fun>
#include <hamsandwich>
#define PLUGIN "[VIP] PaintBall"
#define VERSION "1.0"
#define AUTHOR "SEERQ"
#define USAGE_LEVEL ADMIN_LEVEL_H
#define SCOREATTRIB_NONE 0
#define SCOREATTRIB_DEAD (1<<0)
#define SCOREATTRIB_BOMB (1<<1)
#define SCOREATTRIB_VIP (1<<2)
#define TASK_WYSZKOLENIE_SANITARNE 736
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_message(get_user_msgid("ScoreAttrib"), "MessageScoreAttrib");
RegisterHam(Ham_Spawn, "player", "Odrodzenie", 1);
}
public MessageScoreAttrib(iMsgID, iDest, iReceiver)
{
new iPlayer = get_msg_arg_int(1);
if(get_user_flags(iPlayer) & USAGE_LEVEL)
{
if(is_user_connected(iPlayer))
{
if(cs_get_user_team(iPlayer)==CS_TEAM_CT)
{
set_msg_arg_int(2, ARG_BYTE, is_user_alive(iPlayer) ? SCOREATTRIB_VIP : SCOREATTRIB_DEAD);
}
else
{
set_msg_arg_int(2, ARG_BYTE, is_user_alive(iPlayer) ? SCOREATTRIB_VIP : SCOREATTRIB_BOMB);
}
}
}
}
public WyszkolenieSanitarne(id)
{
id -= TASK_WYSZKOLENIE_SANITARNE;
if(!is_user_connected(id))
return PLUGIN_CONTINUE;
if(get_user_flags(id) & USAGE_LEVEL)
{
set_task(2.0, "WyszkolenieSanitarne", id+TASK_WYSZKOLENIE_SANITARNE);
if(is_user_alive(id))
{
new cur_health = get_user_health(id);
new max_health = 200;
new new_health = cur_health+0<max_health? cur_health+0: max_health;
set_user_health(id, new_health);
}
}
return PLUGIN_CONTINUE;
}
public Odrodzenie(id)
{
if(!is_user_alive(id) || !(get_user_flags(id) & USAGE_LEVEL))
set_task(2.0, "WyszkolenieSanitarne", id+TASK_WYSZKOLENIE_SANITARNE);
set_task(2.0, "DropNorm");
set_user_health(id, 200);
set_user_maxspeed(id, 10.0);
set_user_footsteps(id, 1);
client_print(id, print_chat, "[VIP]: VIP zostal stworzony przez SEERQ <img src='http://img.amxx.pl/public/style_emoticons/<#EMO_DIR#>/smile.gif' class='bbc_emoticon' alt=':)' />");
give_item(id, "weapon_p90");
give_item(id, "weapon_p90");
give_item(id, "weapon_p90");
give_item(id, "weapon_hegrenade");
give_item(id, "weapon_smokegrenade");
return PLUGIN_CONTINUE;
}
public DropNorm(id)
{
if(!is_user_connected(id))
return PLUGIN_CONTINUE;
client_cmd(id, "drop weapon_xm1014;drop weapon_scout");
if(get_user_flags(id) & USAGE_LEVEL)
{
set_task(2.0, "DropNorm");
if(is_user_alive(id))
{
client_cmd(id, "drop weapon_mp5navy;drop weapon_xm1014;drop weapon_scout");
}
}
return PLUGIN_CONTINUE;
}Napisano 16.07.2011 19:08
Użytkownik SAS edytował ten post 16.07.2011 19:34
www.BartoIT.pl
- klikasz to, a dzięki temu rozwijam ten profil
Odwiedź strefę pobierania i pobierz wersję testową alfa Counter Strike: Global terror MOD
Napisano 18.07.2011 12:26
Napisano 18.07.2011 16:31
www.BartoIT.pl
- klikasz to, a dzięki temu rozwijam ten profil
Odwiedź strefę pobierania i pobierz wersję testową alfa Counter Strike: Global terror MOD
Napisano 18.07.2011 17:04
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <fakemeta>
#include <cstrike>
#include <fun>
#include <hamsandwich>
#define PLUGIN "[VIP] PaintBall"
#define VERSION "1.0"
#define AUTHOR "SEERQ"
#define USAGE_LEVEL ADMIN_LEVEL_H
#define SCOREATTRIB_NONE 0
#define SCOREATTRIB_DEAD (1<<0)
#define SCOREATTRIB_BOMB (1<<1)
#define SCOREATTRIB_VIP (1<<2)
#define TASK_WYSZKOLENIE_SANITARNE 736
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_message(get_user_msgid("ScoreAttrib"), "MessageScoreAttrib");
RegisterHam(Ham_Spawn, "player", "Odrodzenie", 1);
}
public MessageScoreAttrib(iMsgID, iDest, iReceiver)
{
new iPlayer = get_msg_arg_int(1);
if(get_user_flags(iPlayer) & USAGE_LEVEL)
{
if(is_user_connected(iPlayer))
{
if(cs_get_user_team(iPlayer)==CS_TEAM_CT)
{
set_msg_arg_int(2, ARG_BYTE, is_user_alive(iPlayer) ? SCOREATTRIB_VIP : SCOREATTRIB_DEAD);
}
else
{
set_msg_arg_int(2, ARG_BYTE, is_user_alive(iPlayer) ? SCOREATTRIB_VIP : SCOREATTRIB_BOMB);
}
}
}
}
public WyszkolenieSanitarne(id)
{
id -= TASK_WYSZKOLENIE_SANITARNE;
if(!is_user_connected(id))
return PLUGIN_CONTINUE;
if(get_user_flags(id) & USAGE_LEVEL)
{
set_task(2.0, "WyszkolenieSanitarne", id+TASK_WYSZKOLENIE_SANITARNE);
if(is_user_alive(id))
{
new cur_health = get_user_health(id);
new max_health = 200;
new new_health = cur_health+0<max_health? cur_health+0: max_health;
set_user_health(id, new_health);
}
}
return PLUGIN_CONTINUE;
}
public Odrodzenie(id)
{
if(!is_user_alive(id) || !(get_user_flags(id) & USAGE_LEVEL))
set_task(2.0, "WyszkolenieSanitarne", id+TASK_WYSZKOLENIE_SANITARNE);
set_task(2.0, "DropNorm");
set_user_health(id, 200);
set_user_maxspeed(id, 10.0);
set_user_footsteps(id, 1);
client_print(id, print_chat, "[VIP]: VIP zostal stworzony przez SEERQ <img src='http://img.amxx.pl/public/style_emoticons/<#EMO_DIR#>/smile.gif' class='bbc_emoticon' alt=':)' />");
give_item(id, "weapon_p90");
give_item(id, "weapon_p90");
give_item(id, "weapon_p90");
give_item(id, "weapon_hegrenade");
give_item(id, "weapon_smokegrenade");
return PLUGIN_CONTINUE;
}
public DropNorm(id)
{
if(!is_user_connected(id))
return PLUGIN_CONTINUE;
client_cmd(id, "drop weapon_xm1014;drop weapon_scout");
if(get_user_flags(id) & USAGE_LEVEL)
{
set_task(2.0, "DropNorm");
if(is_user_alive(id))
{
client_cmd(id, "drop weapon_mp5navy;drop weapon_xm1014;drop weapon_scout");
}
}
return PLUGIN_CONTINUE;
}Napisano 20.07.2011 08:09
www.BartoIT.pl
- klikasz to, a dzięki temu rozwijam ten profil
Odwiedź strefę pobierania i pobierz wersję testową alfa Counter Strike: Global terror MOD
Napisano 20.07.2011 08:45
Napisano 22.07.2011 11:43
www.BartoIT.pl
- klikasz to, a dzięki temu rozwijam ten profil
Odwiedź strefę pobierania i pobierz wersję testową alfa Counter Strike: Global terror MOD
0 użytkowników, 0 gości, 0 anonimowych