04.10.2013, 17:30
Quote:
The amx is undefined on line :
amx_PushString(amx, &message_addr, 0, message, false, false); How to initialize and define it ? |
Код:
AMX *amx
Код:
bool DoSendClientMessage()
Actually it should look like this:
Код:
bool DoSendClientMessage(AMX *amx, int playerid, int color, const char *message)
Also use the AMX pointer of any valid AMX source, where you actually use DoSendClientMessage().