Erik
Участник
- Сообщения
- 67
- Реакции
- 16
В плагине sm_hosties (JailBreak) есть игра в лр Петушиный Бой, и когда один из игроков запрыгивает другому на голову, который снизу должен умереть, но этого не происходит
В плагине есть такие строки которые это отслеживают, но они не работают (Может их изменили), я не нашел решения в интернете
В плагине есть такие строки которые это отслеживают, но они не работают (Может их изменили), я не нашел решения в интернете
new g_Offset_GroundEnt = -1;
LastRequest_OnPluginStart()
{
g_Offset_GroundEnt = FindSendPropInfo("CBasePlayer", "m_hGroundEntity");
}
public Action:Timer_ChickenFight(Handle:timer)
{
new LR_Player_Prisoner = GetArrayCell(gH_DArray_LR_Partners, idx, _:Block_Prisoner);
new LR_Player_Guard = GetArrayCell(gH_DArray_LR_Partners, idx, _:Block_Guard);
new p1EntityBelow = GetEntDataEnt2(LR_Player_Prisoner, g_Offset_GroundEnt);
new p2EntityBelow = GetEntDataEnt2(LR_Player_Guard, g_Offset_GroundEnt);
if (p1EntityBelow == LR_Player_Guard)
{
KillAndReward(LR_Player_Guard, LR_Player_Prisoner);
}
if (p2EntityBelow == LR_Player_Guard)
{
KillAndReward(LR_Player_Prisoner, LR_Player_Guard);
}
}
LastRequest_OnPluginStart()
{
g_Offset_GroundEnt = FindSendPropInfo("CBasePlayer", "m_hGroundEntity");
}
public Action:Timer_ChickenFight(Handle:timer)
{
new LR_Player_Prisoner = GetArrayCell(gH_DArray_LR_Partners, idx, _:Block_Prisoner);
new LR_Player_Guard = GetArrayCell(gH_DArray_LR_Partners, idx, _:Block_Guard);
new p1EntityBelow = GetEntDataEnt2(LR_Player_Prisoner, g_Offset_GroundEnt);
new p2EntityBelow = GetEntDataEnt2(LR_Player_Guard, g_Offset_GroundEnt);
if (p1EntityBelow == LR_Player_Guard)
{
KillAndReward(LR_Player_Guard, LR_Player_Prisoner);
}
if (p2EntityBelow == LR_Player_Guard)
{
KillAndReward(LR_Player_Prisoner, LR_Player_Guard);
}
}