|
Author
|
Message
|
|
Senior Member
Join Date: May 2012
Location: Pakistan
|

05-15-2012
, 08:38
Script Compiled,But Now working
|
#1
|
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <hamsandwich>
#define PLUGIN "SIMPLE HUD Message"
#define VERSION "1.0"
#define AUTHOR "Anonymouse"
public plugin_init()
{
RegisterHam(Ham_Spawn, "player", "fwHamPlayerSpawnPost", 1)
}
public fwhamplayerspawnpost(iplayer){
if (is_user_alive(iplayer))
{
client_print(iplayer,print_center,"YOU ARE RE SPAWNED,GOODLUCK! FOR THIS TIME")
client_print(iplayer,print_center,"DON'T GET FUCKED UP THIS TIME,RETREAT HELL!!")
}
else {
client_print(iplayer,print_center,"SCREWYOU,Y OU'RE DEAD AGAIN")
client_print(iplayer,print_center,"WAIT FOR RE-SPAWN")
}
}
I have compiled this script with no errors but its not working.
My plan was to show a message on respawn and on death,But not working.
Any suggestions,This is my first simple plugin,Help please..........
|
|
|
|