14.08.2014, 09:01
Quote:
|
Is something like SetPlayerChatBubbleForPlayer possible, or it requires clientside modifications ?
R9 looks great so far, but I still don't use it, because it has to be updated with every SA:MP version. :\ It isn't possible to make it discover the addresses automatically for every version ? |
pawn Код:
CMD:bubble(playerid, params[])
{
SendRPC(playerid, 0x3B, // rpcid - send this RPC only for playerid, so only playerid will see the chat bubble
BS_UNSIGNEDSHORT, strval(params), // at player, where you want to create bubble
BS_INT, 0x33FF33AA, // color
BS_FLOAT, 50.0, // drawdistance
BS_INT, 4325, // expiretime
BS_UNSIGNEDCHAR, 3, // string lenght
BS_STRING, "asd"); // string
return 1;
}


