how do i fix this?
Code:
/tmp/textB9TCOn.sma(24) : warning 213: tag mismatch
Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>
#include <hamsandwich>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
RegisterHam(Ham_Spawn, "player", "FwdHamPlayerSpawn", 1)
}
public FwdHamPlayerSpawn(id)
{
new model[32]
cs_get_user_model(id, model, charsmax(model))
if (equal(model, "sas"))
set_user_health(id, 120)
set_user_maxspeed(id, 400)
return HAM_IGNORED
}
thanks