ur getting loose indentation warnings i think, i have to assume cause ur not telling me ur warnings, and it is because you have
Code:
return PLUGIN_HANDLED
all the way to the left, indent it so it is even with the
Code:
read_args(argMessage, 255)
set_hudmessage(130, 90, 70, -1.0, 0.45, 0, 1.0, 999991.0, 0.1, 0.2, -1)
show_hudmessage(0, argMessage)
part and it will be fixed
ex:
Code:
read_args(argMessage, 255)
set_hudmessage(130, 90, 70, -1.0, 0.45, 0, 1.0, 999991.0, 0.1, 0.2, -1)
show_hudmessage(0, argMessage)
return PLUGIN_HANDLED
__________________