|
Author
|
Message
|
|
Junior Member
|

11-10-2007
, 11:24
I'm clueless...
|
#1
|
I'm new to this, completely.. so I followed the tutorial on the amxmodx.org .doc section.. and apparently I did something wrong.. can anyone point it out? I'm clueless..
Quote:
#include <amxmodx>
#include <amxmisc>
#include <fun>
new PLUGIN[] ="Change HP"
new VERSION[] ="1.0"
new AUTHOR[] ="Marlon"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_concmd("amx_hp", "cmd_hp", ADMIN_SLAY, "<target> <hp> ")
}
public cmd_hp(id, level, cid)
{
if (!cmd_acess(id, level, cid, 3))
return PLUGIN_HANDLED
new Arg1[24]
new Arg2[4]
read_argv(1, Arg1, 23)
read_argv(2, Arg2, 3)
new Health = str_to_num(Arg2)
if (Arg1[0] == '@')
}
{
new Team = 0
if (equali(Arg1[1], "CT"))
{
Team = 2
} else if (equali(Arg1[1], "T")) {
Team = 1
}
new player[32], num
get_players(players, num)
new i
for (i=0 i<num; i++)
{
if (!Team)
{
set_user_health(players[i], Health)
} else {
if (get_user_team(players[i]) == Team)
{
set_user_health(players[i], Health)
}
}
}
} else {
new player = cmd_target(id, Arg1, 1)
if (!player)
{
console_print(id, "Sorry, player %s was not found!", Arg1)
return PLUGIN_HANDLED
} else {
set_user_health(player, Health)
}
}
{
return PLUGIN_HANDLED
}
|
|
|
|
|