Approved No Entities Block

Useless Stuffs, Spam ... etc
User avatar
Night Fury
Mod Developer
Mod Developer
Posts: 677
Joined: 7 years ago
Contact:

#21

Post by Night Fury » 6 years ago

sam_bhosale4 wrote: 6 years ago now working but need few changes! the ham is taking damage on Armour not health and also when the blocker stop blocking he keeps glowing need to terminate glow after block end
This is the new code with fixed-glow.
I don't remember how to fix the first problem. :P

Code: Select all

#include <zombie_escape>

new const szEntities[][] =
{
	"func_train",
	"func_vehicle",
	"func_tracktrain",
	"func_door"
}

public plugin_init()
{
	register_plugin("No Block", "1.0", "Raheem")

	for (new i = 0; i <= charsmax(szEntities); i++)
	{
		RegisterHam(Ham_Blocked, szEntities[i], "Fw_Blocked_Post", 1)
	}
}

public Fw_Blocked_Post(iEnt, id)
{
	if (is_user_alive(id) && pev_valid(iEnt))
	{
		if (ze_is_user_zombie(id))
		{
			ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 1.0, DMG_GENERIC)
		}
		else
		{
			ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 0.5, DMG_GENERIC)
		}

		client_print(id, print_center, "Stop BLOCK!!!")
		Set_Rendering(id, kRenderFxGlowShell, 255, 255, 255, kRenderNormal, 40)
	}
	else
	{
		Set_Rendering(id)
	}
}
Want your own mod edition? PM me.
Accepting private projects.
Discord: Fury#7469
Image

User avatar
Raheem
Mod Developer
Mod Developer
Posts: 2214
Joined: 7 years ago
Contact:

#22

Post by Raheem » 6 years ago

Oh, I forget to reset the glow... Good jack.
sam_bhosale4 wrote: 6 years ago suggestions-
1. set time for takedamage as 0.5 sec
2.glow is working good but player should glow only when blocking the entity once he stop glow should terminate!
3.if glow will blink every sec it would be nice :P
4.I wonder if we add human block in this..like when semiclip isnt added and players are inside the heli/entity if they come closer to each other and stick together the heli gets blocked, so in this case also the humans must get damage..
if these things comes into plugins it will be a great plugin of ze <3
and sorry bros(jacky and raheem) im giving you so much work but im just started in pawn amxx :(
1. Taking damage is set in the block event and this event is called many times in second i don't know how much in fact. Better to low the damage than we make time limit.
3. Hmm, What this means? Add glow and remove like pulsing ON, OFF, ON, OFF ?
4.Already if they blocked the heli they will be damaged. If not so i recommend using in that case the semiclip.
He who fails to plan is planning to fail

User avatar
sam_bhosale4
Mod Tester
Mod Tester
India
Posts: 109
Joined: 7 years ago
Location: INDIA
Contact:

#23

Post by sam_bhosale4 » 6 years ago

Raheem wrote: 6 years ago Oh, I forget to reset the glow... Good jack.
sam_bhosale4 wrote: 6 years ago suggestions-
1. set time for takedamage as 0.5 sec
2.glow is working good but player should glow only when blocking the entity once he stop glow should terminate!
3.if glow will blink every sec it would be nice :P
4.I wonder if we add human block in this..like when semiclip isnt added and players are inside the heli/entity if they come closer to each other and stick together the heli gets blocked, so in this case also the humans must get damage..
if these things comes into plugins it will be a great plugin of ze <3
and sorry bros(jacky and raheem) im giving you so much work but im just started in pawn amxx :(
1. Taking damage is set in the block event and this event is called many times in second i don't know how much in fact. Better to low the damage than we make time limit.
3. Hmm, What this means? Add glow and remove like pulsing ON, OFF, ON, OFF ?
4.Already if they blocked the heli they will be damaged. If not so i recommend using in that case the semiclip.
ohh okay..
but its not damaging the hp its damaging the armour and when armour goes to 0 it does nothing :(
Glow - yeah pulsive on/off on/off :D
-=SeRious-GaminG|Zombie Escape[Alien vs. Predator]|Asia=-
206.189.132.169:40000
Image

User avatar
Night Fury
Mod Developer
Mod Developer
Posts: 677
Joined: 7 years ago
Contact:

#24

Post by Night Fury » 6 years ago

Raheem wrote: 6 years ago . Taking damage is set in the block event and this event is called many times in second i don't know how much in fact. Better to low the damage than we make time limit.
Put task with your specific time and with 'a' flag to be initialized only 1 time each time the function is called. :D
Want your own mod edition? PM me.
Accepting private projects.
Discord: Fury#7469
Image

User avatar
Raheem
Mod Developer
Mod Developer
Posts: 2214
Joined: 7 years ago
Contact:

#25

Post by Raheem » 6 years ago

I don't know how HamTakeDamage not effect health but anyway now i check if player have armor then i take it from him so it take from his damage. Also now the glow will be pulsating.
Jack GamePlay wrote: 6 years ago Put task with your specific time and with 'a' flag to be initialized only 1 time each time the function is called. :D
We discussed this together so to low damage is better than this and simpler.

Code:
    1. #include <zombie_escape>
    2.  
    3. new const szEntities[][] =
    4. {
    5.     "func_train",
    6.     "func_vehicle",
    7.     "func_tracktrain",
    8.     "func_door"
    9. }
    10.  
    11. new g_iPulsating = 0
    12.  
    13. public plugin_init()
    14. {
    15.     register_plugin("No Block", "1.0", "Raheem")
    16.  
    17.     for (new i = 0; i <= charsmax(szEntities); i++)
    18.     {
    19.         RegisterHam(Ham_Blocked, szEntities[i], "Fw_Blocked_Post", 1)
    20.     }
    21. }
    22.  
    23. public Fw_Blocked_Post(iEnt, id)
    24. {
    25.     if (is_user_alive(id) && pev_valid(iEnt))
    26.     {
    27.         if (get_entvar(id, var_armorvalue) != 0.0)
    28.         {
    29.             set_entvar(id, var_armorvalue, 0.0)
    30.         }
    31.        
    32.         if (ze_is_user_zombie(id))
    33.         {
    34.             ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 1.0, DMG_GENERIC)
    35.         }
    36.         else
    37.         {
    38.             ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 0.5, DMG_GENERIC)
    39.         }
    40.  
    41.         client_print(id, print_center, "Stop BLOCK!!!")
    42.        
    43.         switch (g_iPulsating)
    44.         {
    45.             case 0:
    46.             {
    47.                 Set_Rendering(id, kRenderFxGlowShell, 255, 255, 255, kRenderNormal, 40)
    48.                 g_iPulsating = 1
    49.             }
    50.             case 1:
    51.             {
    52.                 Set_Rendering(id)
    53.                 g_iPulsating = 0
    54.             }
    55.         }
    56.     }
    57.     else
    58.     {
    59.         Set_Rendering(id)
    60.     }
    61. }
He who fails to plan is planning to fail

User avatar
sam_bhosale4
Mod Tester
Mod Tester
India
Posts: 109
Joined: 7 years ago
Location: INDIA
Contact:

#26

Post by sam_bhosale4 » 6 years ago

Raheem wrote: 6 years ago I don't know how HamTakeDamage not effect health but anyway now i check if player have armor then i take it from him so it take from his damage. Also now the glow will be pulsating.
Jack GamePlay wrote: 6 years ago Put task with your specific time and with 'a' flag to be initialized only 1 time each time the function is called. :D
We discussed this together so to low damage is better than this and simpler.

Code:
    1. #include <zombie_escape>
    2.  
    3. new const szEntities[][] =
    4. {
    5.     "func_train",
    6.     "func_vehicle",
    7.     "func_tracktrain",
    8.     "func_door"
    9. }
    10.  
    11. new g_iPulsating = 0
    12.  
    13. public plugin_init()
    14. {
    15.     register_plugin("No Block", "1.0", "Raheem")
    16.  
    17.     for (new i = 0; i <= charsmax(szEntities); i++)
    18.     {
    19.         RegisterHam(Ham_Blocked, szEntities[i], "Fw_Blocked_Post", 1)
    20.     }
    21. }
    22.  
    23. public Fw_Blocked_Post(iEnt, id)
    24. {
    25.     if (is_user_alive(id) && pev_valid(iEnt))
    26.     {
    27.         if (get_entvar(id, var_armorvalue) != 0.0)
    28.         {
    29.             set_entvar(id, var_armorvalue, 0.0)
    30.         }
    31.        
    32.         if (ze_is_user_zombie(id))
    33.         {
    34.             ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 1.0, DMG_GENERIC)
    35.         }
    36.         else
    37.         {
    38.             ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 0.5, DMG_GENERIC)
    39.         }
    40.  
    41.         client_print(id, print_center, "Stop BLOCK!!!")
    42.        
    43.         switch (g_iPulsating)
    44.         {
    45.             case 0:
    46.             {
    47.                 Set_Rendering(id, kRenderFxGlowShell, 255, 255, 255, kRenderNormal, 40)
    48.                 g_iPulsating = 1
    49.             }
    50.             case 1:
    51.             {
    52.                 Set_Rendering(id)
    53.                 g_iPulsating = 0
    54.             }
    55.         }
    56.     }
    57.     else
    58.     {
    59.         Set_Rendering(id)
    60.     }
    61. }
not working :( plugin running but not working
-=SeRious-GaminG|Zombie Escape[Alien vs. Predator]|Asia=-
206.189.132.169:40000
Image

User avatar
Raheem
Mod Developer
Mod Developer
Posts: 2214
Joined: 7 years ago
Contact:

#27

Post by Raheem » 6 years ago

Ok, Here you are this one tested the problem was that we should make the damage >= 1.0 So HamTakeDamage works. Also pulsating working with no problems.

Code:
    1. #include <zombie_escape>
    2.  
    3. new const szEntities[][] =
    4. {
    5.     "func_train",
    6.     "func_vehicle",
    7.     "func_tracktrain",
    8.     "func_door"
    9. }
    10.  
    11. new g_iPulsating = 0
    12.  
    13. public plugin_init()
    14. {
    15.     register_plugin("No Block", "1.0", "Raheem")
    16.  
    17.     for (new i = 0; i <= charsmax(szEntities); i++)
    18.     {
    19.         RegisterHam(Ham_Blocked, szEntities[i], "Fw_Blocked_Post", 1)
    20.     }
    21. }
    22.  
    23. public Fw_Blocked_Post(iEnt, id)
    24. {
    25.     if (is_user_alive(id) && pev_valid(iEnt))
    26.     {
    27.         ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 1.0, DMG_GENERIC)
    28.  
    29.         client_print(id, print_center, "Stop BLOCK!!!")
    30.        
    31.         switch (g_iPulsating)
    32.         {
    33.             case 0:
    34.             {
    35.                 Set_Rendering(id, kRenderFxGlowShell, 255, 255, 255, kRenderNormal, 40)
    36.                 g_iPulsating = 1
    37.             }
    38.             case 1:
    39.             {
    40.                 Set_Rendering(id)
    41.                 g_iPulsating = 0
    42.             }
    43.         }
    44.     }
    45.     else
    46.     {
    47.         Set_Rendering(id)
    48.     }
    49. }
If you can test this case and report me how it's going: If Escape-Leader blocks his glow will be like? Also after he unblock how it will be?
If you noticed any bug report.
He who fails to plan is planning to fail

User avatar
sam_bhosale4
Mod Tester
Mod Tester
India
Posts: 109
Joined: 7 years ago
Location: INDIA
Contact:

#28

Post by sam_bhosale4 » 6 years ago

Raheem wrote: 6 years ago Ok, Here you are this one tested the problem was that we should make the damage >= 1.0 So HamTakeDamage works. Also pulsating working with no problems.

Code:
    1. #include <zombie_escape>
    2.  
    3. new const szEntities[][] =
    4. {
    5.     "func_train",
    6.     "func_vehicle",
    7.     "func_tracktrain",
    8.     "func_door"
    9. }
    10.  
    11. new g_iPulsating = 0
    12.  
    13. public plugin_init()
    14. {
    15.     register_plugin("No Block", "1.0", "Raheem")
    16.  
    17.     for (new i = 0; i <= charsmax(szEntities); i++)
    18.     {
    19.         RegisterHam(Ham_Blocked, szEntities[i], "Fw_Blocked_Post", 1)
    20.     }
    21. }
    22.  
    23. public Fw_Blocked_Post(iEnt, id)
    24. {
    25.     if (is_user_alive(id) && pev_valid(iEnt))
    26.     {
    27.         ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 1.0, DMG_GENERIC)
    28.  
    29.         client_print(id, print_center, "Stop BLOCK!!!")
    30.        
    31.         switch (g_iPulsating)
    32.         {
    33.             case 0:
    34.             {
    35.                 Set_Rendering(id, kRenderFxGlowShell, 255, 255, 255, kRenderNormal, 40)
    36.                 g_iPulsating = 1
    37.             }
    38.             case 1:
    39.             {
    40.                 Set_Rendering(id)
    41.                 g_iPulsating = 0
    42.             }
    43.         }
    44.     }
    45.     else
    46.     {
    47.         Set_Rendering(id)
    48.     }
    49. }
If you can test this case and report me how it's going: If Escape-Leader blocks his glow will be like? Also after he unblock how it will be?
If you noticed any bug report.
now its working perfectly damaging! but not damaging per sec and that glow isnt pulsing nor terminating after block end
-=SeRious-GaminG|Zombie Escape[Alien vs. Predator]|Asia=-
206.189.132.169:40000
Image

User avatar
Raheem
Mod Developer
Mod Developer
Posts: 2214
Joined: 7 years ago
Contact:

#29

Post by Raheem » 6 years ago

HMM, Ok about the damage i tells you as when players block the entity the block function called many times in one second that's why the damage not every 1 seconds. For now i see damage 1 is good as example if Human health 1,000 it's good 1 damage per call. Second about the glow and you say it's not terminating and not pulsating.... It works for me but i'll try another idea soon i'll post you better code.
He who fails to plan is planning to fail

User avatar
sam_bhosale4
Mod Tester
Mod Tester
India
Posts: 109
Joined: 7 years ago
Location: INDIA
Contact:

#30

Post by sam_bhosale4 » 6 years ago

Raheem wrote: 6 years ago HMM, Ok about the damage i tells you as when players block the entity the block function called many times in one second that's why the damage not every 1 seconds. For now i see damage 1 is good as example if Human health 1,000 it's good 1 damage per call. Second about the glow and you say it's not terminating and not pulsating.... It works for me but i'll try another idea soon i'll post you better code.
ya its called more than 100 times haha.. in my server human hp is 150 and if someone blocks he instantly dies -_-
-=SeRious-GaminG|Zombie Escape[Alien vs. Predator]|Asia=-
206.189.132.169:40000
Image

User avatar
Raheem
Mod Developer
Mod Developer
Posts: 2214
Joined: 7 years ago
Contact:

#31

Post by Raheem » 6 years ago

Ok this add limit for damage so it will make -10 from his HP every 1.5 seconds. About glow i don't manage to reset it. Simply i need to think again where to reset as the problem i don't know that when player stop blocking he stops. So i can't reset the glow right.

Code:
    1. #include <zombie_escape>
    2.  
    3. new const szEntities[][] =
    4. {
    5.     "func_train",
    6.     "func_vehicle",
    7.     "func_tracktrain",
    8.     "func_door"
    9. }
    10.  
    11. new g_iPulsating = 0, Float:g_flLastBlock[33]
    12.  
    13. // Cvars
    14. new g_pCvarBlockTime
    15.  
    16. public plugin_init()
    17. {
    18.     register_plugin("No Block", "1.0", "Raheem")
    19.    
    20.     // Cvars
    21.     g_pCvarBlockTime = register_cvar("ze_block_time", "1.5")
    22.  
    23.     for (new i = 0; i <= charsmax(szEntities); i++)
    24.     {
    25.         RegisterHam(Ham_Blocked, szEntities[i], "Fw_Blocked_Post", 1)
    26.     }
    27. }
    28.  
    29. public Fw_Blocked_Post(iEnt, id)
    30. {
    31.     new Float:flRefTime = get_gametime()
    32.    
    33.     if (is_user_alive(id) && pev_valid(iEnt))
    34.     {
    35.         if(g_flLastBlock[id] > flRefTime)
    36.             return
    37.        
    38.         g_flLastBlock[id] = flRefTime + get_pcvar_float(g_pCvarBlockTime)
    39.            
    40.         ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 10.0, DMG_GENERIC)
    41.  
    42.         client_print(id, print_center, "Stop BLOCK!!!")
    43.        
    44.         switch (g_iPulsating)
    45.         {
    46.             case 0:
    47.             {
    48.                 Set_Rendering(id, kRenderFxGlowShell, 255, 255, 255, kRenderNormal, 40)
    49.                 g_iPulsating = 1
    50.             }
    51.             case 1:
    52.             {
    53.                 Set_Rendering(id)
    54.                 g_iPulsating = 0
    55.             }
    56.         }
    57.     }
    58. }
Try think with me how to detect that this bad player stop blocking.
He who fails to plan is planning to fail

User avatar
sam_bhosale4
Mod Tester
Mod Tester
India
Posts: 109
Joined: 7 years ago
Location: INDIA
Contact:

#32

Post by sam_bhosale4 » 6 years ago

Raheem wrote: 6 years ago Ok this add limit for damage so it will make -10 from his HP every 1.5 seconds. About glow i don't manage to reset it. Simply i need to think again where to reset as the problem i don't know that when player stop blocking he stops. So i can't reset the glow right.

Code:
    1. #include <zombie_escape>
    2.  
    3. new const szEntities[][] =
    4. {
    5.     "func_train",
    6.     "func_vehicle",
    7.     "func_tracktrain",
    8.     "func_door"
    9. }
    10.  
    11. new g_iPulsating = 0, Float:g_flLastBlock[33]
    12.  
    13. // Cvars
    14. new g_pCvarBlockTime
    15.  
    16. public plugin_init()
    17. {
    18.     register_plugin("No Block", "1.0", "Raheem")
    19.    
    20.     // Cvars
    21.     g_pCvarBlockTime = register_cvar("ze_block_time", "1.5")
    22.  
    23.     for (new i = 0; i <= charsmax(szEntities); i++)
    24.     {
    25.         RegisterHam(Ham_Blocked, szEntities[i], "Fw_Blocked_Post", 1)
    26.     }
    27. }
    28.  
    29. public Fw_Blocked_Post(iEnt, id)
    30. {
    31.     new Float:flRefTime = get_gametime()
    32.    
    33.     if (is_user_alive(id) && pev_valid(iEnt))
    34.     {
    35.         if(g_flLastBlock[id] > flRefTime)
    36.             return
    37.        
    38.         g_flLastBlock[id] = flRefTime + get_pcvar_float(g_pCvarBlockTime)
    39.            
    40.         ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 10.0, DMG_GENERIC)
    41.  
    42.         client_print(id, print_center, "Stop BLOCK!!!")
    43.        
    44.         switch (g_iPulsating)
    45.         {
    46.             case 0:
    47.             {
    48.                 Set_Rendering(id, kRenderFxGlowShell, 255, 255, 255, kRenderNormal, 40)
    49.                 g_iPulsating = 1
    50.             }
    51.             case 1:
    52.             {
    53.                 Set_Rendering(id)
    54.                 g_iPulsating = 0
    55.             }
    56.         }
    57.     }
    58. }
Try think with me how to detect that this bad player stop blocking.
thats nice do one thing
define human damage different and zombie damage diff..
for human 10dmg/sec and zm 2000 dmg /sec
-=SeRious-GaminG|Zombie Escape[Alien vs. Predator]|Asia=-
206.189.132.169:40000
Image

sped
Member
Member
Posts: 17
Joined: 6 years ago
Contact:

#33

Post by sped » 6 years ago

sam_bhosale4 wrote: 6 years ago
Raheem wrote: 6 years ago Ok this add limit for damage so it will make -10 from his HP every 1.5 seconds. About glow i don't manage to reset it. Simply i need to think again where to reset as the problem i don't know that when player stop blocking he stops. So i can't reset the glow right.

Code:
    1. #include <zombie_escape>
    2.  
    3. new const szEntities[][] =
    4. {
    5.     "func_train",
    6.     "func_vehicle",
    7.     "func_tracktrain",
    8.     "func_door"
    9. }
    10.  
    11. new g_iPulsating = 0, Float:g_flLastBlock[33]
    12.  
    13. // Cvars
    14. new g_pCvarBlockTime
    15.  
    16. public plugin_init()
    17. {
    18.     register_plugin("No Block", "1.0", "Raheem")
    19.    
    20.     // Cvars
    21.     g_pCvarBlockTime = register_cvar("ze_block_time", "1.5")
    22.  
    23.     for (new i = 0; i <= charsmax(szEntities); i++)
    24.     {
    25.         RegisterHam(Ham_Blocked, szEntities[i], "Fw_Blocked_Post", 1)
    26.     }
    27. }
    28.  
    29. public Fw_Blocked_Post(iEnt, id)
    30. {
    31.     new Float:flRefTime = get_gametime()
    32.    
    33.     if (is_user_alive(id) && pev_valid(iEnt))
    34.     {
    35.         if(g_flLastBlock[id] > flRefTime)
    36.             return
    37.        
    38.         g_flLastBlock[id] = flRefTime + get_pcvar_float(g_pCvarBlockTime)
    39.            
    40.         ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 10.0, DMG_GENERIC)
    41.  
    42.         client_print(id, print_center, "Stop BLOCK!!!")
    43.        
    44.         switch (g_iPulsating)
    45.         {
    46.             case 0:
    47.             {
    48.                 Set_Rendering(id, kRenderFxGlowShell, 255, 255, 255, kRenderNormal, 40)
    49.                 g_iPulsating = 1
    50.             }
    51.             case 1:
    52.             {
    53.                 Set_Rendering(id)
    54.                 g_iPulsating = 0
    55.             }
    56.         }
    57.     }
    58. }
Try think with me how to detect that this bad player stop blocking.
thats nice do one thing
define human damage different and zombie damage diff..
for human 10dmg/sec and zm 2000 dmg /sec
i agree :D

User avatar
ArminC
Senior Member
Senior Member
Romania
Posts: 137
Joined: 6 years ago
Location: Bucharest
Contact:

#34

Post by ArminC » 6 years ago

For normal mods (or other):

Code: Select all

#include <amxmodx>
#include <hamsandwich>
#include <fakemeta>
#include <reapi>

new const szEntities[][] =
{
    "func_train",
    "func_vehicle",
    "func_tracktrain",
    "func_door"
}
 
new Float:g_flLastBlock[33]
 
// Cvars
new g_pCvarBlockTime
 
public plugin_init()
{
    register_plugin("No Block", "1.0", "Raheem")
   
    // Cvars
    g_pCvarBlockTime = register_cvar("block_time", "1.5") // At how many seconds to take damage?
 
    for (new i = 0; i <= charsmax(szEntities); i++)
    {
        RegisterHam(Ham_Blocked, szEntities[i], "Fw_Blocked_Post", 1)
    }
}
 
public Fw_Blocked_Post(iEnt, id)
{
    new Float:flRefTime = get_gametime()
   
    if (is_user_alive(id) && pev_valid(iEnt))
    {
        if(g_flLastBlock[id] > flRefTime)
            return
       
        g_flLastBlock[id] = flRefTime + get_pcvar_float(g_pCvarBlockTime)
           
        ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 10.0, DMG_GENERIC) // How much damage(hp) to take?
 
        client_print(id, print_center, "STOP BLOCKING!")
    }
}

User avatar
sPe3doN
Senior Member
Senior Member
Algeria
Posts: 258
Joined: 7 years ago
Contact:

#35

Post by sPe3doN » 5 years ago

Raheem wrote: 6 years ago Ok this add limit for damage so it will make -10 from his HP every 1.5 seconds. About glow i don't manage to reset it. Simply i need to think again where to reset as the problem i don't know that when player stop blocking he stops. So i can't reset the glow right.

Code:
    1. #include <zombie_escape>
    2.  
    3. new const szEntities[][] =
    4. {
    5.     "func_train",
    6.     "func_vehicle",
    7.     "func_tracktrain",
    8.     "func_door"
    9. }
    10.  
    11. new g_iPulsating = 0, Float:g_flLastBlock[33]
    12.  
    13. // Cvars
    14. new g_pCvarBlockTime
    15.  
    16. public plugin_init()
    17. {
    18.     register_plugin("No Block", "1.0", "Raheem")
    19.    
    20.     // Cvars
    21.     g_pCvarBlockTime = register_cvar("ze_block_time", "1.5")
    22.  
    23.     for (new i = 0; i <= charsmax(szEntities); i++)
    24.     {
    25.         RegisterHam(Ham_Blocked, szEntities[i], "Fw_Blocked_Post", 1)
    26.     }
    27. }
    28.  
    29. public Fw_Blocked_Post(iEnt, id)
    30. {
    31.     new Float:flRefTime = get_gametime()
    32.    
    33.     if (is_user_alive(id) && pev_valid(iEnt))
    34.     {
    35.         if(g_flLastBlock[id] > flRefTime)
    36.             return
    37.        
    38.         g_flLastBlock[id] = flRefTime + get_pcvar_float(g_pCvarBlockTime)
    39.            
    40.         ExecuteHamB(Ham_TakeDamage, id, iEnt, iEnt, 10.0, DMG_GENERIC)
    41.  
    42.         client_print(id, print_center, "Stop BLOCK!!!")
    43.        
    44.         switch (g_iPulsating)
    45.         {
    46.             case 0:
    47.             {
    48.                 Set_Rendering(id, kRenderFxGlowShell, 255, 255, 255, kRenderNormal, 40)
    49.                 g_iPulsating = 1
    50.             }
    51.             case 1:
    52.             {
    53.                 Set_Rendering(id)
    54.                 g_iPulsating = 0
    55.             }
    56.         }
    57.     }
    58. }
Try think with me how to detect that this bad player stop blocking.
Nice, but You need to add -2000 Hp For Zm Team to
Image

czirimbolo
Veteran Member
Veteran Member
Poland
Posts: 598
Joined: 7 years ago
Contact:

#36

Post by czirimbolo » 5 years ago

Its not woriking in 1.3v, can someone fix this plugin?
Image

User avatar
Night Fury
Mod Developer
Mod Developer
Posts: 677
Joined: 7 years ago
Contact:

#37

Post by Night Fury » 5 years ago

czirimbolo wrote: 5 years ago Its not woriking in 1.3v, can someone fix this plugin?
Any errors?
Want your own mod edition? PM me.
Accepting private projects.
Discord: Fury#7469
Image

Rain1153
Senior Member
Senior Member
India
Posts: 278
Joined: 6 years ago
Contact:

#38

Post by Rain1153 » 5 years ago

yes it is buggy it works for human but when you are zombie your health reduces to 1 and your screen turns vertical!..bro can't u make the same ham take damage for zombies too but there damage rate should be like 2000+
LOL

czirimbolo
Veteran Member
Veteran Member
Poland
Posts: 598
Joined: 7 years ago
Contact:

#39

Post by czirimbolo » 5 years ago

I can block heli and train wihout any drops of HP. Not working for me
Image

User avatar
Raheem
Mod Developer
Mod Developer
Posts: 2214
Joined: 7 years ago
Contact:

#40

Post by Raheem » 5 years ago

It seems that you can't block moving entities anymore. I'm not sure if this fixed in ReHLDS or ReGameDLL or ReAPI but generally for me the block event not called then this plugin will not work.
czirimbolo wrote: 5 years ago I can block heli and train wihout any drops of HP. Not working for me
You sure that these entities get blocked?

Post your ReHLDS, ReGameDLL, ReAPI versions + post server ip so i come see if it's blocked or not. As i test it does not block.
He who fails to plan is planning to fail

Post Reply

Create an account or sign in to join the discussion

You need to be a member in order to post a reply

Create an account

Not a member? register to join our community
Members can start their own topics & subscribe to topics
It’s free and only takes a minute

Register

Sign in

Who is online

Users browsing this forum: No registered users and 5 guests