![]() |
|
Kërko Plugins [+SHQIP] - Printable Version +- eSportsKosova - Gaming Community (https://esportskosova.com) +-- Forum: HAPËSIRA E COUNTER-STRIKE (https://esportskosova.com/forum-7.html) +--- Forum: Counter-Strike 1.6 (https://esportskosova.com/forum-19.html) +---- Forum: Amx Mod X (https://esportskosova.com/forum-58.html) +----- Forum: AMX - Plugin's (https://esportskosova.com/forum-193.html) +----- Thread: Kërko Plugins [+SHQIP] (/thread-5285.html) Pages:
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
|
Re: Kerko Pluginsa [+Shqip] - rijadi12 - 10-15-2022 A mund te me ndihmoni ta gjet pluginin qe kur te rrot dikon me ta qit sa pi ja hjek edhe anasjelltas!! Re: Kerko Pluginsa [+Shqip] - -M- - 10-15-2022 rijadi12 Wrote:A mund te me ndihmoni ta gjet pluginin qe kur te rrot dikon me ta qit sa pi ja hjek edhe anasjelltas!! Patjeter, Code: http://esportskosova.com/forum/viewtopic.php?f=394&t=5363&hilit=forca+plumbit+1 Thanks. Re: Kerko Pluginsa [+Shqip] - SyncMaster^ - 10-16-2022 kush ma gjen pluginsin , kur shan najkush me server me dal shkronjat me ylla. Re: Kerko Pluginsa [+Shqip] - AltinDesign - 10-18-2022 cl_weather 1 ose cl_weather o ku em shkru per bor eshte Re: Kerko Pluginsa [+Shqip] - enisPINT; - 10-19-2022 Code: /*
[ZP] Class : Assassin Zombie
(Powerful zombie class)
by Fry!
Description :
This is one of powerful zombies. Cuz now you can chose between infect and kill humans.
Press +Attack2 to kill people.
Changelog :
28/12/2009 - v1.0 - Public release
*/
#include <amxmodx>
#include <cstrike>
#include <fakemeta>
#include <hamsandwich>
#include <zombieplague>
#define PLUGIN "[ZP] Class : Assassin Zombie"
#define VERSION "1.0"
#define AUTHOR "Fry!"
new const zclass_name[] = "Assassin Zombie"
new const zclass_info[] = "HP+++ Speed++ Knockback++"
new const zclass_model[] = "zombie_source"
new const zclass_clawmodel[] = "v_knife_zombie.mdl"
const zclass_health = 2430
const zclass_speed = 220
const Float:zclass_gravity = 1.0
const Float:zclass_knockback = 1.55
new g_msgScoreAttrib
new g_zclass_assassin
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_cvar("zp_zclass_assassin_zombie",VERSION,FCVAR_SERVER|FCVAR_EXTDLL|FCVAR_UNLOGGED|FCVAR_SPONLY)
g_msgScoreAttrib = get_user_msgid("ScoreAttrib")
RegisterHam(Ham_TakeDamage, "player", "fw_PlayerTakeDamage")
}
public plugin_precache()
{
g_zclass_assassin = zp_register_zombie_class(zclass_name, zclass_info, zclass_model, zclass_clawmodel, zclass_health, zclass_speed, zclass_gravity, zclass_knockback)
}
public zp_user_infected_post(player, infector)
{
if (zp_get_user_zombie_class(player) == g_zclass_assassin)
{
client_print(player, print_chat, "[ZP] You are now Assassin Zombie")
client_print(player, print_chat, "[ZP] You can chose between infect and kill people")
}
}
public zp_user_infect_attempt(victim, infector, nemesis)
{
if (zp_get_user_zombie_class(infector) == g_zclass_assassin)
{
new button = pev(infector, pev_button)
if (button & IN_ATTACK2)
{
ExecuteHamB(Ham_Killed, victim, infector, 0)
}
else
return PLUGIN_CONTINUE
return ZP_PLUGIN_HANDLED
}
return PLUGIN_CONTINUE
}
public fw_PlayerTakeDamage(id, inflictor, attacker, Float:damage, damage_type)
{
if (!is_user_alive(id) || !is_user_bot(id) || !zp_get_user_zombie(id))
return HAM_IGNORED
if (zp_get_user_zombie_class(id) != g_zclass_assassin)
return HAM_IGNORED
new attacker_name[32]
new button = pev(attacker, pev_button)
new GetMaxPlayers = get_maxplayers()
new GetHumanCount = zp_get_human_count()
get_user_name(attacker, attacker_name, 31)
if (!zp_is_swarm_round() || !zp_is_plague_round() || !zp_is_survivor_round() || !zp_is_nemesis_round() || GetHumanCount == GetMaxPlayers)
{
if (button & IN_ATTACK2)
{
if (zp_get_user_zombie_class(attacker) == g_zclass_assassin)
{
FixDeadAttrib(id)
UpdateScoreBoard(id, attacker)
client_print(id, print_chat, "[ZP] Hmm looks like %s didn't like you and decided to kill You!", attacker_name)
return HAM_SUPERCEDE
}
}
}
return HAM_SUPERCEDE
}
public FixDeadAttrib(id)
{
message_begin(MSG_BROADCAST, g_msgScoreAttrib)
write_byte(id)
write_byte(DEAD_DYING)
message_end()
}
public UpdateScoreBoard(victim, attacker)
{
new victim_frags = get_user_frags(victim) + 0
new attacker_frags = get_user_frags(attacker) + 1
new attacker_money = cs_get_user_money(attacker) + 0
set_pev(victim, pev_frags, float(victim_frags))
set_pev(attacker, pev_frags, float(attacker_frags))
cs_set_user_money(attacker, attacker_money, 1)
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1049\\ f0\\ fs16 \n\\ par }
*/Qet sma. me ma kthy ne amxx. dikush Re: Kerko Pluginsa [+Shqip] - dewiiL. - 10-21-2022 enis pint , paska errora wlla spo bojka ku me dit ku o problemi se un muj me ta kthy amo tbon bug masne
Re: Kerko Pluginsa [+Shqip] - 1dr1z1dr1z - 10-22-2022 a mun me ma gjet naj kush naj plugins qe ban unllag ne srw se e hek llagin Re: Kerko Pluginsa [+Shqip] - -M- - 10-22-2022 1dr1z1dr1z - Futu ketu dhe te nevojiten gjithcka rreth serverit tend Code: http://esportskosova.com/lh/doc/protect.html+1 Thanks Re: Kerko Pluginsa [+Shqip] - SyncMaster^ - 10-22-2022 FlexMan Wrote:kush ma gjen pluginsin , kur shan najkush me server me dal shkronjat me ylla. |