Skocz do zawartości

Witamy w Nieoficjalnym polskim support'cie AMX Mod X

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.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

Wklejka 1jjl93elg053m dodana przez dasiek, 12.08.2013 08:21
Typ:



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.
249.
250.
251.
252.
253.
254.
255.
256.
257.
258.
259.
260.
261.
262.
263.
264.
265.
266.
267.
268.
269.
270.
271.
#include <amxmodx>
#include <cstrike>
#include <engine>
#include <fakemeta>
#include <fun>
#include <hamsandwich>
 
#define FL_ONGROUND (1<<9)
#define FL_WATERJUMP (1<<11)
 
forward amxbans_admin_connect(id);
 
new Array:g_Array, bool:g_FreezeTime, bool:g_Vip[33], g_Hudmsg, skoki[33],
weapon_id;
 
new const g_Langcmd[][]={"say /vips","say_team /vips","say /vipy","say_team /vipy"};
 
public plugin_init(){
    register_plugin("VIP Ultimate", "12.3.0.2", "benio101 & speedkill");
    RegisterHam(Ham_Spawn, "player", "SpawnedEventPre", 1);
    RegisterHam(get_player_resetmaxspeed_func(), "player", "fw_Player_ResetMaxSpeed", 1);
    register_logevent("logevent_round_start", 2, "1=Round_Start");
    register_event("HLTV", "event_new_round", "a", "1=0", "2=0");
    register_forward(FM_CmdStart, "CmdStartPre");
    register_message(get_user_msgid("ScoreAttrib"), "VipStatus");
    g_Array=ArrayCreate(64,32);
    for(new i;i<sizeof g_Langcmd;i++){
        register_clcmd(g_Langcmd[i], "ShowVips");
    }
    register_clcmd("say /vip", "ShowMotd");
    register_message(get_user_msgid("SayText"),"handleSayText");
    g_Hudmsg=CreateHudSyncObj();
}
public client_authorized(id){
    if(get_user_flags(id) & 524288 == 524288){
        client_authorized_vip(id);
    }
}
public client_authorized_vip(id){
    g_Vip[id]=true;
    new g_Name[64];
    get_user_name(id,g_Name,charsmax(g_Name));
 
    new g_Size = ArraySize(g_Array);
    new szName[64];
 
    for(new i = 0; i < g_Size; i++){
        ArrayGetString(g_Array, i, szName, charsmax(szName));
 
        if(equal(g_Name, szName)){
            return 0;
        }
    }
    ArrayPushString(g_Array,g_Name);
    set_hudmessage(24, 190, 220, 0.25, 0.2, 0, 6.0, 6.0);
    ShowSyncHudMsg(0, g_Hudmsg, "Vip %s wbija na serwer !",g_Name);
 
    return PLUGIN_CONTINUE;
}
public client_disconnect(id){
    if(g_Vip[id]){
        client_disconnect_vip(id);
    }
}
public client_disconnect_vip(id){
    g_Vip[id]=false;
    new Name[64];
    get_user_name(id,Name,charsmax(Name));
 
    new g_Size = ArraySize(g_Array);
    new g_Name[64];
 
    for(new i = 0; i < g_Size; i++){
        ArrayGetString(g_Array, i, g_Name, charsmax(g_Name));
 
        if(equal(g_Name,Name)){
            ArrayDeleteItem(g_Array,i);
            break;
        }
    }
}
public SpawnedEventPre(id){
    if(g_Vip[id]){
        if(is_user_alive(id)){
            SpawnedEventPreVip(id);
        }
    }
}
public SpawnedEventPreVip(id){
    set_user_gravity(id, 600.0/800.0);
    set_user_footsteps(id,1);
    skoki[id]=1;
    set_user_health(id, get_user_health(id)+120);
    new henum=(user_has_weapon(id,CSW_HEGRENADE)?cs_get_user_bpammo(id,CSW_HEGRENADE):0);
    give_item(id, "weapon_hegrenade");
    ++henum;
    new fbnum=(user_has_weapon(id,CSW_FLASHBANG)?cs_get_user_bpammo(id,CSW_FLASHBANG):0);
    give_item(id, "weapon_flashbang");
    ++fbnum;
    cs_set_user_bpammo(id, CSW_FLASHBANG, 2);
    new sgnum=(user_has_weapon(id,CSW_SMOKEGRENADE)?cs_get_user_bpammo(id,CSW_SMOKEGRENADE):0);
    give_item(id, "weapon_smokegrenade");
    ++sgnum;
    cs_set_user_nvg(id);
    new g_Model[64];
    formatex(g_Model,charsmax(g_Model),"%s",get_user_team(id) == 1 ? "VipTT" : "VipCT");
    cs_set_user_model(id,g_Model);
    if(get_pdata_cbase(id, 369)==-1){
        if(get_user_team(id)==1){
            give_item(id, "weapon_glock18");
            give_item(id, "ammo_9mm");
            weapon_id=find_ent_by_owner(-1, "weapon_glock18", id);
            if(weapon_id)cs_set_weapon_ammo(weapon_id, 20);
            cs_set_user_bpammo(id, CSW_GLOCK18, 120);
        }
        if(get_user_team(id)==2){
            give_item(id, "weapon_usp");
            give_item(id, "ammo_45acp");
            weapon_id=find_ent_by_owner(-1, "weapon_usp", id);
            if(weapon_id)cs_set_weapon_ammo(weapon_id, 12);
            cs_set_user_bpammo(id, CSW_USP, 100);
        }
    }
    if(get_pdata_cbase(id, 368)==-1){
        give_item(id, "weapon_mp5navy");
        give_item(id, "ammo_9mm");
        weapon_id=find_ent_by_owner(-1, "weapon_mp5navy", id);
        if(weapon_id)cs_set_weapon_ammo(weapon_id, 30);
        cs_set_user_bpammo(id, CSW_MP5NAVY, 120);
    }
    if(get_user_team(id)==2){
        give_item(id, "item_thighpack");
        give_item(id, "weapon_shield");
    }
}
Ham:get_player_resetmaxspeed_func(){
    #if defined Ham_CS_Player_ResetMaxSpeed
    return IsHamValid(Ham_CS_Player_ResetMaxSpeed)?Ham_CS_Player_ResetMaxSpeed:Ham_Item_PreFrame;
    #else
    return Ham_Item_PreFrame;
    #endif
}
public fw_Player_ResetMaxSpeed(id){
    if(g_Vip[id]){
        if(is_user_alive(id)){
            fw_Player_ResetMaxSpeedVip(id);
        }
    }
}
public logevent_round_start(){
    g_FreezeTime=false;
}
public event_new_round(){
    g_FreezeTime=true;
}
public fw_Player_ResetMaxSpeedVip(id){
    if(!g_FreezeTime){
        set_user_maxspeed(id,get_user_maxspeed(id) + 50);
    }
}
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] = 1;
    }
}
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 ShowVips(id){
    return PLUGIN_CONTINUE;
}
public client_infochanged(id){
    if(g_Vip[id]){
        new szName[64];
        get_user_info(id,"name",szName,charsmax(szName));
 
        new Name[64];
        get_user_name(id,Name,charsmax(Name));
 
        if(!equal(szName,Name)){
            ArrayPushString(g_Array,szName);
 
            new g_Size=ArraySize(g_Array);
            new g_Name[64];
            for(new i = 0; i < g_Size; i++){
                ArrayGetString(g_Array, i, g_Name, charsmax(g_Name));
 
                if(equal(g_Name,Name)){
                    ArrayDeleteItem(g_Array,i);
                    break;
                }
            }
        }
    }
}
public plugin_end(){
    ArrayDestroy(g_Array);
}
public ShowMotd(id){
    show_motd(id, "vip.txt", "Informacje o vipie");
}
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[VIP]";
 
        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 plugin_precache(){
    precache_model("models/player/VipCT/VipCT.mdl");
    precache_model("models/player/VipTT/VipTT.mdl");
}
public client_PreThink(id){
    if(g_Vip[id] && is_user_alive(id)){
        client_PreThinkVip(id);
    }
}
public client_PreThinkVip(id){
    entity_set_float(id, EV_FL_fuser2, 0.0);
 
    if(entity_get_int(id, EV_INT_button) & 2){
        new flags = entity_get_int(id, EV_INT_flags);
 
        if(flags & FL_WATERJUMP || entity_get_int(id, EV_INT_waterlevel) >= 2 || !(flags & FL_ONGROUND)){
            return PLUGIN_CONTINUE;
        }
        new Float:velocity[3];
        entity_get_vector(id, EV_VEC_velocity, velocity);
 
        velocity[2] += 250.0;
        entity_set_vector(id, EV_VEC_velocity, velocity);
 
        entity_set_int(id, EV_INT_gaitsequence, 6);
    }
    return PLUGIN_CONTINUE;
}
public amxbans_admin_connect(id){
    client_authorized(id);
}

Dodanych wklejek: 11179
Powered By (Pav32) Pastebin © 2011