I am in a bit of a problem here ...
I am experienceing some extreme issues with Natural Selection. With any plugin that tries to alter the experience of a player, or the combat points it either returns an error, or does not do anything.
I even coded this plugin to see if it was me, or if it was the author.
Code:
#include <amxmodx>
#include <amxmisc>
#include <ns>
public plugin_init() {
register_plugin("Point Giver","1","me");
register_clcmd("amx_givepoint","give_point",ADMIN_LEVEL_A,"<user> <point>- Adds or subtracts a point");
}
public give_point(id) {
new arg1[32], arg2[32], player, point;
read_argv(1,arg1,31)
read_argv(2,arg2,31)
player = cmd_target(id,arg1)
point = str_to_num(arg2);
ns_set_points(player,point);
return PLUGIN_HANDLED;
}
It still does not alter the combat point. And yes, I am running a co_* map. I see every server with the plugin I wish to run with the same version of MetaMod and AMXX (1.60), and the same NS_amxx.dll module. I see nothing wrong with my scripting, does it work on any of your servers?
I really need some help, this is irking me to death.
I even reinstalled AMXX twice, hoping it would do something. I am also running WIN2k3, I am not sure if that would do anything ...