Stock don't work - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Stock don't work (
/showthread.php?tid=531022)
Stock don't work -
alanhutch - 10.08.2014
Hi.
Whis this is not working?
When you send Visuale(playerid, "Blabla"); or Visuale(playerid, string);
it has to be like: "
> action" up the head and
"
> %s action" in SendClientMessage.
Please help me, I have to open my server at 17:00 (Italian Time)
pawn Код:
stock Visuale(playerid, string[])
{
SetPlayerChatBubble(playerid, "> %s", COLOR_PURPLE, 30, 15000, string);
SendClientMessage(playerid, COLOR_PURPLE, "> %s %s", RPN(playerid), string);
return 1;
}
Thanks
Re: Stock don't work -
Misiur - 10.08.2014
Use
https://sampwiki.blast.hk/wiki/Format first.
Re: Stock don't work -
alanhutch - 10.08.2014
Worked, thanks.