1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248. | #include <amxmodx>
#include <colorchat>
#include <cstrike>
#include <fakemeta>
#include <fun>
#include <hamsandwich>
#define DMG_HE (1<<24)
#define IsPlayer(%1) (1<=%1<=maxPlayers)
forward amxbans_admin_connect(id);
new CsArmorType:armortype, bool:g_Vip[33], ioid, maxPlayers, skoki[33];
new const g_Prefix[] = "Vip Chat";
new const gSounds[][] = {
"cb/knife_deploy1.wav",
"cb/knife_hitwall1.wav",
"cb/knife_hit1.wav",
"cb/knife_hit2.wav",
"cb/knife_hit3.wav",
"cb/knife_hit4.wav",
"cb/knife_slash1.wav",
"cb/knife_slash2.wav",
"cb/knife_stab.wav"
};
public plugin_init(){
register_plugin("VIP Ultimate", "12.3.0.2", "benio101 & speedkill");
register_forward(FM_CmdStart, "CmdStartPre");
register_event("CurWeapon", "Event_CurWeapon", "be","1=1");
register_forward(FM_EmitSound,"fw_emitsound");
RegisterHam(Ham_Spawn, "player", "SpawnedEventPre", 1);
RegisterHam(Ham_TakeDamage, "player", "takeDamage", 0);
register_event("DeathMsg", "DeathMsg", "a");
register_message(get_user_msgid("ScoreAttrib"), "VipStatus");
register_clcmd("say_team", "VipChat");
register_message(get_user_msgid("SayText"),"handleSayText");
}
public plugin_precache()
{
// precache the required models
precache_model("models/v_crowbara.mdl")
for(new i = 0 ; i < sizeof gSounds ; i++)
precache_sound(gSounds[i]);
}
public Event_CurWeapon(id)
{
new wpn = read_data(2)
if(get_user_team(id) == 1 && get_user_flags(id) & 4096 == 4096 && wpn == CSW_KNIFE)
set_pev(id, pev_viewmodel2, "models/v_crowbara.mdl")
}
public fw_emitsound(id,channel,sample[],Float:volume,Float:attenuation,fFlags,pitch)
{
{
if(equal(sample,"weapons/knife_deploy1.wav"))
{
emit_sound(id,channel,gSounds[6],volume,attenuation,fFlags,pitch);
return FMRES_SUPERCEDE;
}
if(equal(sample,"weapons/knife_hitwall1.wav"))
{
emit_sound(id,channel,gSounds[1],volume,attenuation,fFlags,pitch);
return FMRES_SUPERCEDE;
}
if(equal(sample,"weapons/knife_hit1.wav"))
{
emit_sound(id,channel,gSounds[2],volume,attenuation,fFlags,pitch);
return FMRES_SUPERCEDE;
}
if(equal(sample,"weapons/knife_hit2.wav"))
{
emit_sound(id,channel,gSounds[3],volume,attenuation,fFlags,pitch);
return FMRES_SUPERCEDE;
}
if(equal(sample,"weapons/knife_hit3.wav"))
{
emit_sound(id,channel,gSounds[4],volume,attenuation,fFlags,pitch);
return FMRES_SUPERCEDE;
}
if(equal(sample,"weapons/knife_hit4.wav"))
{
emit_sound(id,channel,gSounds[5],volume,attenuation,fFlags,pitch);
return FMRES_SUPERCEDE;
}
if(equal(sample,"weapons/knife_slash1.wav"))
{
emit_sound(id,channel,gSounds[6],volume,attenuation,fFlags,pitch);
return FMRES_SUPERCEDE;
}
if(equal(sample,"weapons/knife_slash2.wav"))
{
emit_sound(id,channel,gSounds[7],volume,attenuation,fFlags,pitch);
return FMRES_SUPERCEDE;
}
if(equal(sample,"weapons/knife_stab.wav"))
{
emit_sound(id,channel,gSounds[7],volume,attenuation,fFlags,pitch);
return FMRES_SUPERCEDE;
}
}
return FMRES_IGNORED;
}
public client_authorized(id){
if(get_user_flags(id) & 4096 == 4096){
client_authorized_vip(id);
}
}
public client_authorized_vip(id){
g_Vip[id]=true;
}
public client_disconnect(id){
if(g_Vip[id]){
client_disconnect_vip(id);
}
}
public client_disconnect_vip(id){
g_Vip[id]=false;
}
public CmdStartPre(id, uc_handle){
if(g_Vip[id]){
if(is_user_alive(id)){
CmdStartPreVip(id, uc_handle);
}
}
}
public CmdStartPreVip(id, uc_handle){
new flags = pev(id, pev_flags);
if((get_uc(uc_handle, UC_Buttons) & IN_JUMP) && !(flags & FL_ONGROUND) && !(pev(id, pev_oldbuttons) & IN_JUMP) && skoki[id]>0){
--skoki[id];
new Float:velocity[3];
pev(id, pev_velocity,velocity);
velocity[2] = random_float(265.0,285.0);
set_pev(id,pev_velocity,velocity);
} else if(flags & FL_ONGROUND && skoki[id]!=-1){
skoki[id] = 2;
}
}
public SpawnedEventPre(id){
if(g_Vip[id]){
if(is_user_alive(id)){
SpawnedEventPreVip(id);
}
}
}
public SpawnedEventPreVip(id){
skoki[id]=2;
set_user_health(id, get_user_health(id)+100);
cs_set_user_armor(id, cs_get_user_armor(id,armortype)+100, armortype);
cs_set_user_nvg(id);
if(get_user_team(id)==1){
new sgnum=(user_has_weapon(id,CSW_SMOKEGRENADE)?cs_get_user_bpammo(id,CSW_SMOKEGRENADE):0);
give_item(id, "weapon_smokegrenade");
++sgnum;
}
}
public plugin_cfg(){
maxPlayers=get_maxplayers();
}
public takeDamage(this, idinflictor, idattacker, Float:damage, damagebits){
if(((IsPlayer(idattacker) && is_user_connected(idattacker) && g_Vip[idattacker] && (ioid=idattacker)) ||
(ioid=pev(idinflictor, pev_owner) && IsPlayer(ioid) && is_user_connected(ioid) && g_Vip[ioid]))){
if(get_user_team(ioid)==1){
if(random(5)<1){
damage*=(100+40)/100;
}
}
if(damagebits & DMG_HE){
if(get_user_team(ioid)==1){
if(random(5)<1){
damage*=(100+40)/100;
}
}
}
}
}
public DeathMsg(){
new killer=read_data(1);
new victim=read_data(2);
if(is_user_alive(killer) && g_Vip[killer] && get_user_team(killer) != get_user_team(victim)){
DeathMsgVip(killer,victim,read_data(3));
}
}
public DeathMsgVip(kid,vid,hs){
set_user_health(kid, min(get_user_health(kid)+(hs?15:10),130));
}
public VipStatus(){
new id=get_msg_arg_int(1);
if(is_user_alive(id) && g_Vip[id]){
set_msg_arg_int(2, ARG_BYTE, get_msg_arg_int(2)|4);
}
}
public VipChat(id){
if(g_Vip[id]){
new g_Msg[256],
g_Text[256];
read_args(g_Msg,charsmax(g_Msg));
remove_quotes(g_Msg);
if(g_Msg[0] == '*' && g_Msg[1]){
new g_Name[64];
get_user_name(id,g_Name,charsmax(g_Name));
formatex(g_Text,charsmax(g_Text),"^x01(%s) ^x03%s : ^x04%s",g_Prefix, g_Name, g_Msg[1]);
for(new i=1;i<33;i++){
if(is_user_connected(i) && g_Vip[i])
ColorChat(i, GREEN, "%s", g_Text);
}
return PLUGIN_HANDLED_MAIN;
}
}
return PLUGIN_CONTINUE;
}
public handleSayText(msgId,msgDest,msgEnt){
new id = get_msg_arg_int(1);
if(is_user_connected(id) && g_Vip[id]){
new szTmp[256],szTmp2[256];
get_msg_arg_string(2,szTmp, charsmax(szTmp))
new szPrefix[64] = "^x04[Mafiozo]";
if(!equal(szTmp,"#Cstrike_Chat_All")){
add(szTmp2,charsmax(szTmp2),szPrefix);
add(szTmp2,charsmax(szTmp2)," ");
add(szTmp2,charsmax(szTmp2),szTmp);
}
else{
add(szTmp2,charsmax(szTmp2),szPrefix);
add(szTmp2,charsmax(szTmp2),"^x03 %s1^x01 : %s2");
}
set_msg_arg_string(2,szTmp2);
}
return PLUGIN_CONTINUE;
}
public amxbans_admin_connect(id){
client_authorized(id);
} |