-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrm_protect_rune.sma
103 lines (84 loc) · 2.78 KB
/
rm_protect_rune.sma
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
#include <amxmodx>
#include <amxmisc>
#include <rm_api>
#include <hamsandwich>
new g_protection[MAX_PLAYERS + 1] = {0,...};
new Float:g_fProtection_time[MAX_PLAYERS + 1] = {0.0,...};
new rune_name[] = "rm_protect_rune_name";
new rune_descr[] = "rm_protect_rune_desc";
new rune_model_path[64] = "models/rm_reloaded/rune_red.mdl";
new rune_sound_path[64] = "sound/rm_reloaded/protect.wav";
new rune_model_id = -1;
new g_iCfgSpawnSecondsDelay = 0;
public plugin_init()
{
register_plugin("RM_PROTECT","2.9","Karaulov");
rm_register_rune(rune_name,rune_descr,Float:{255.0,0.0,0.0}, rune_model_path, rune_sound_path,rune_model_id);
RegisterHookChain(RG_CSGameRules_FPlayerCanTakeDamage, "CSGameRules_FPlayerCanTakeDmg", .post = false)
/* Чтение конфигурации */
new cost = 6600;
rm_read_cfg_int(rune_name,"COST_MONEY",cost,cost);
rm_base_set_rune_cost(cost);
// Максимальное количество предметов/рун которые могут быть на карте в одно время
new max_count = 10;
rm_read_cfg_int(rune_name,"MAX_COUNT_ON_MAP",max_count,max_count);
rm_base_set_max_count( max_count );
// Задержка между спавнами
rm_read_cfg_int(rune_name,"DELAY_BETWEEN_NEXT_SPAWN",g_iCfgSpawnSecondsDelay,g_iCfgSpawnSecondsDelay);
}
new Float:flLastSpawnTime = 0.0;
public rm_spawn_rune(iEnt)
{
if (floatround(floatabs(get_gametime() - flLastSpawnTime)) > g_iCfgSpawnSecondsDelay)
{
flLastSpawnTime = get_gametime();
return SPAWN_SUCCESS;
}
return SPAWN_ERROR;
}
public plugin_precache()
{
/* Чтение конфигурации */
rm_read_cfg_str(rune_name,"model",rune_model_path,rune_model_path,charsmax(rune_model_path));
rm_read_cfg_str(rune_name,"sound",rune_sound_path,rune_sound_path,charsmax(rune_sound_path));
rune_model_id = precache_model(rune_model_path);
if (file_exists(rune_sound_path,true))
{
precache_generic(rune_sound_path);
}
}
public rm_give_rune(id)
{
g_protection[id] = 5;
rm_base_highlight_player(id);
rm_base_highlight_screen(id);
if (task_exists(id))
remove_task(id);
set_task(1.0,"update_protect_state",id, _, _, "b");
}
public rm_drop_rune(id)
{
g_protection[id] = 0;
if (task_exists(id))
remove_task(id);
}
public update_protect_state(id)
{
rm_show_dhud_message(id, DHUD_POS_ITEM2,{255, 119, 0},1.05,true,"SHIELD POWER: [ %d%% ]", g_protection[id] * 20);
}
public CSGameRules_FPlayerCanTakeDmg(const pPlayer, const pAttacker)
{
if (is_real_player(pPlayer) && g_protection[pPlayer] > 0)
{
if (get_gametime() - g_fProtection_time[pPlayer] > 0.3)
{
g_protection[pPlayer]--;
if (g_protection[pPlayer] <= 0)
rm_base_drop_rune( pPlayer );
g_fProtection_time[pPlayer] = get_gametime();
}
SetHookChainReturn(ATYPE_INTEGER, false);
return HC_BREAK;
}
return HC_CONTINUE;
}