AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   Plugin Invincible cs 1.6 (https://forums.alliedmods.net/showthread.php?t=313582)

derio157 01-14-2019 09:40

Plugin Invincible cs 1.6
 
I saw a plugin on a cs 1.6 gungame server that if the player kills an amount of player without dying or killing 3 player on the knife it becomes Invincible for 10 seconds besides winning a yellow trail and getting yellow shining

Could someone help me find this plugin:roll:

Dr Zayd 01-14-2019 16:07

Re: Plugin Invincible cs 1.6
 
1 Attachment(s)
Isn't useless to give someone Invincible & a yellow trail at the same time?

here i copy paste from zp_zclass_ghost & kills counter i didn't test it

derio157 01-15-2019 06:50

Re: Plugin Invincible cs 1.6
 
I'm already going to TEST

THANK YOU Dr Zayd

klippy 01-15-2019 08:41

Re: Plugin Invincible cs 1.6
 
Quote:

Originally Posted by Dr Zayd (Post 2634789)
Isn't useless to give someone Invincible & a yellow trail at the same time?

here i copy paste from zp_zclass_ghost & kills counter i didn't test it

You are mixing up "invincible" and "invisible".

Dr Zayd 01-19-2019 16:20

Re: Plugin Invincible cs 1.6
 
Quote:

Originally Posted by KliPPy (Post 2634870)
You are mixing up "invincible" and "invisible".

ow wait rlly thanks mate but i think he meant invisible XD so .. invincible* mean immunity? and invisible means 100% transparency?

E1_531G 01-19-2019 17:15

Re: Plugin Invincible cs 1.6
 
Quote:

Originally Posted by Dr Zayd (Post 2635526)
ow wait rlly thanks mate but i think he meant invisible XD so .. invincible* mean immunity? and invisible means 100% transparency?

Yes and yes.

He wants godmode and other stuff he wrote.

derio157 01-21-2019 09:08

Re: Plugin Invincible cs 1.6
 
As the friend said I want invincible
AND ALSO A SPEED ?

Xalus 01-22-2019 04:06

Re: Plugin Invincible cs 1.6
 
PHP Code:

#include <amxmodx>
#include <fun>
#include <hamsandwich>

#define KILL_AMOUNT 3      // Amount of kills to reach
#define INVINCIBLE_TIME 10.0 // In Float:seconds

new g_client_kills[33]

public 
plugin_init()
{
  
RegisterHam(Ham_Killed"player""client_killed_post"1)
  
RegisterHam(Ham_Spawn"player""client_spawn_post"1)
}
public 
client_spawn_post(client)
{
  if(
is_user_connected(client))
  {
    
g_client_kills[client] = 0
  
}
}
public 
client_killed_post(clientclient_killer)
{
  if(
is_user_alive(client_killer))
  {
    
g_client_kills[client_killer] += 1

    
if(g_client_kills[client_killer] >= KILL_AMOUNT
      
&& !get_user_godmode(client_killer))
    {
      
set_user_godmode(client_killer1)
      
set_user_rendering(client_killerkRenderFxGlowShell2552550kRenderNormal25)

      
client_print(client_killerprint_center"You received invincible powers.")

      
set_task(INVINCIBLE_TIME"invincible_stop"client_killer)
    }
  }
}
public 
invincible_stop(client)
{
  if(
is_user_connected(client))
  {
    
set_user_godmode(client0)
    
set_user_rendering(client)
  }



derio157 01-23-2019 06:41

Re: Plugin Invincible cs 1.6
 
Tank you Xalus I will test later

derio157 02-10-2019 10:33

Re: Plugin Invincible cs 1.6
 
XALUS

Can anyone add a sound when activating GODMODE?


All times are GMT -4. The time now is 23:17.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.