Raised This Month: $ Target: $400
 0% 

scripting questions


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
nightscreem
Veteran Member
Join Date: Jul 2004
Location: Belgium
Old 02-17-2005 , 16:39   scripting questions
Reply With Quote #1

what am i doing wrong
this is the scripting tut from doc
Quote:
#include <amxmodx>
#include <amxmisc>
#include <fun>

new PLUGIN[]="HP"
new AUTHOR[]="Nightscream"
new VERSION[]="1.00"

public plugin_unit()
{
register_plugin ("HP, 1.00, Nightscream")
register_concmd ("amx_hp", "cmd_hp", ADMIN_SLAY, " ")
}
public cmd_hp(id, level, cid)
{
if(cmd_access(id, level, cid, 3))
return PLUGIN_HANDLED
new Arg1[24]
new Arg2[4]

read_argv(1, Argh1, 23)
read_argv(2, Argh2, 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, Argh1, 1)
if (!player)
{
console_print(id, "Sorry, player %s could not be found or targetted!", Argh1)

return PLUGIN_HANDLED
} else {
set_user_health(player, Health)
}
}
return PLUGIN_HANDLED
}
__________________
- Bye bye!
nightscreem is offline
 


Thread Tools
Display Modes

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 19:18.


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