Hey all...Just started putting this together...Can someone help me with this??
What I need added:
- Unlimited Ammo 4 all guns
No reload
Unlimited nades
Code:
#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <engine>
#include <cstrike>
#define PLUGIN "Unstopable"
#define VERSION "1.0"
#define AUTHOR "SweatyBanana"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("amx_unstoppable", "cmd_unstop")
register_clcmd("amx_stopme", "cmd_stop")
}
public cmd_unstop(id, level, cid)
{
if (!cmd_access(id, level, cid, 1))
return PLUGIN_HANDLED
set_user_footsteps (id, 1)
cs_set_user_armor (id, 500, CsArmorType:2)
set_user_health(id, 500)
set_user_gravity (id, 0.25)
set_user_maxspeed (id, -2.0)
set_user_rendering(id,kRenderFxNone,0,0,0,kRenderTransAdd,0)
}