Raised This Month: $32 Target: $400
 8% 

Plugin Invincible cs 1.6


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
derio157
Member
Join Date: May 2017
Old 01-14-2019 , 09:40   Plugin Invincible cs 1.6
Reply With Quote #1

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
derio157 is offline
Dr Zayd
Senior Member
Join Date: Jun 2014
Location: forums.alliedmods.net
Old 01-14-2019 , 16:07   Re: Plugin Invincible cs 1.6
Reply With Quote #2

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
Attached Files
File Type: sma Get Plugin or Get Source (uselessplugin.sma - 361 views - 1.3 KB)
__________________
Invisible System | 100%
ـــــــــــــــــــــــــــــ
Anti setinfo check | Ez Plugin and lite
ـــــــــــــــــــــــــــــ
[ZP] Free VIP Menu | Free VIP menu | ZP-Mod |

Last edited by Dr Zayd; 01-14-2019 at 16:29.
Dr Zayd is offline
derio157
Member
Join Date: May 2017
Old 01-15-2019 , 06:50   Re: Plugin Invincible cs 1.6
Reply With Quote #3

I'm already going to TEST

THANK YOU Dr Zayd
derio157 is offline
klippy
AlliedModders Donor
Join Date: May 2013
Location: Serbia
Old 01-15-2019 , 08:41   Re: Plugin Invincible cs 1.6
Reply With Quote #4

Quote:
Originally Posted by Dr Zayd View Post
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".
__________________
klippy is offline
Dr Zayd
Senior Member
Join Date: Jun 2014
Location: forums.alliedmods.net
Old 01-19-2019 , 16:20   Re: Plugin Invincible cs 1.6
Reply With Quote #5

Quote:
Originally Posted by KliPPy View Post
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?
__________________
Invisible System | 100%
ـــــــــــــــــــــــــــــ
Anti setinfo check | Ez Plugin and lite
ـــــــــــــــــــــــــــــ
[ZP] Free VIP Menu | Free VIP menu | ZP-Mod |

Last edited by Dr Zayd; 01-19-2019 at 16:21. Reason: invincible not invicible
Dr Zayd is offline
E1_531G
Senior Member
Join Date: Dec 2017
Old 01-19-2019 , 17:15   Re: Plugin Invincible cs 1.6
Reply With Quote #6

Quote:
Originally Posted by Dr Zayd View Post
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.
__________________
My English is A0
E1_531G is offline
derio157
Member
Join Date: May 2017
Old 01-21-2019 , 09:08   Re: Plugin Invincible cs 1.6
Reply With Quote #7

As the friend said I want invincible
AND ALSO A SPEED ?

Last edited by derio157; 02-10-2019 at 10:35.
derio157 is offline
Xalus
Veteran Member
Join Date: Dec 2009
Location: Belgium
Old 01-22-2019 , 04:06   Re: Plugin Invincible cs 1.6
Reply With Quote #8

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)
  }

__________________
Retired.

Last edited by Xalus; 01-22-2019 at 04:07.
Xalus is offline
derio157
Member
Join Date: May 2017
Old 01-23-2019 , 06:41   Re: Plugin Invincible cs 1.6
Reply With Quote #9

Tank you Xalus I will test later
derio157 is offline
derio157
Member
Join Date: May 2017
Old 02-10-2019 , 10:33   Re: Plugin Invincible cs 1.6
Reply With Quote #10

XALUS

Can anyone add a sound when activating GODMODE?
derio157 is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 07:24.


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