AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Approved Plugins (https://forums.alliedmods.net/forumdisplay.php?f=8)
-   -   1337 Ninja (https://forums.alliedmods.net/showthread.php?t=17304)

PM 08-29-2005 03:33

1337 Ninja
 
1 Attachment(s)
Ninja

This plugin gives people ninja style.
When its used on a player the player will walk really fast, has no footsteps, has 1337 HP, has 1337 armor, and low gravity.

Credits: Tnx to v3x, GHW Chronic and Velocity for perfecting it :wink:

Update
I added the sword.

mahooo60 08-29-2005 05:26

has a sword also??i thing on server with this plugin driving people crazy because the walker cant die with so much speed,health and armor!but if it works so gratulation!

darkcloud9sgl 08-29-2005 08:06

he needs like a sword or something

Sir Apocalypse 08-29-2005 10:04

mmm.... kind useless....
And no one can kill the 1337 ninja.

Hawk552 08-29-2005 12:17

HAHAHAHA this is the best plugin EVER. I have an admin named Ninja!. He'll freak when he sees this. Thanks a lot.

Velocity36 08-29-2005 13:42

Great plugin however I think you should disarm them of all weapons except knife, and the knife would have a model like this.

http://www.csbanana.com/skins/images..._150player.jpg

http://www.csbanana.com/skins/images...n_150world.jpg


And to disarm...

You can check admin_allinone

Hawk552 08-29-2005 13:45

LOL, I just realized you based this on amx_jesus. Oh well, still cool :wink:

Velocity36 08-29-2005 18:08

I got the model for you like this, I'm working on disarm

Code:
/******************************************************************** *  AMXMOD X script.                                                 * *                                                                   * *  Ninja Mode: Gives the player ninja mode                          * *  By: B0oGeYm4n                                                    * *  Plugin Command: amx_ninja <Target>                               * *  <a href="http://www.freelance-killers.tk" target="_blank" rel="nofollow noopener">http://www.freelance-killers.tk</a>                                  * *                                                                   * ********************************************************************/ #include <amxmodx> #include <amxmisc> #include <fun> #include <engine> public plugin_init()     {     register_plugin("amx_ninja","0.1","B0oGeYm4n")     register_clcmd("amx_ninja","ninja",ADMIN_KICK," <name> - user is turned into a 1337 Ninja")     register_event(" CurWeapon", "cmd_speed", "be", "1=1")     set_task(0.1,"fast",0,"",0,"b")     } public plugin_precache()     {     precache_model("models/Katana.mdl")     return PLUGIN_CONTINUE } public ninja(id,level,cid)     {     if(!cmd_access(id,level,cid,2))         {         return PLUGIN_HANDLED     }         new arg[32]     read_argv(1,arg,31)     new player = cmd_target(id,arg,1)         if (!player)         {         return PLUGIN_HANDLED     }         set_user_health(player,1337)     set_user_maxspeed(player,999.0)     set_user_footsteps(player,1)     set_user_gravity(player,0.2)     set_user_armor(player,1337)         {         new clip, ammo, wpnid = get_user_weapon(id,clip,ammo)         if (wpnid == CSW_KNIFE) {             entity_set_string(id, EV_SZ_viewmodel, "models/Katana.mdl")         }     }         new name[32]     get_user_name(player,name,31)     client_print(0,print_chat,"[AMXX] %s is now a 1337 Ninja",name)         return PLUGIN_HANDLED }

One shot dont miss! 08-29-2005 23:42

u could of used mine the only diference is that my assain plugin doesnt give health and armor it gives u a little invisablty speeeeed and no footsteps people love it in my server

PM 08-30-2005 09:05

Your plugin was trashed


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

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