Merry Christmas Object - 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: Merry Christmas Object (
/showthread.php?tid=397540)
Merry Christmas Object -
Blackazur - 05.12.2012
How to make that Players have the "Merry Christmas" Cap on her Head? I saw that on some Servers, and i liked it.
Re: Merry Christmas Object -
[Ro]DuReX - 05.12.2012
Command (ZCMD) to have a Santa Hat:
pawn Код:
CMD:santahat(playerid)
{
SetPlayerAttachedObject(playerid, 3, 19065, 2, 0.120000, 0.040000, -0.003500, 0, 100, 100, 1.4, 1.4, 1.4);
SendClientMessage(playerid, -1, "Merry X-mas, bitch!");
return 1;
}
Re: Merry Christmas Object -
pasha97 - 05.12.2012
Maybe you saw this on my server? I have such feature xD
Re: Merry Christmas Object -
[Ro]DuReX - 05.12.2012
I have this feature on my server too.
Re: Merry Christmas Object - XProtocol - 05.12.2012
Код:
CMD:santahat(playerid)
{
SetPlayerAttachedObject(playerid, 3, 19065, 2, 0.120000, 0.040000, -0.003500, 0, 100, 100, 1.4, 1.4, 1.4);
SendClientMessage(playerid, -1, "Merry X-mas, bitch!");
return 1;
}
Omg You did " SendClientMessage(playerid, -1, "Merry X-mas, bitch!");" Don't make him go away :/
This should be
Код:
CMD:santahat(playerid)
{
SetPlayerAttachedObject(playerid, 3, 19065, 2, 0.120000, 0.040000, -0.003500, 0, 100, 100, 1.4, 1.4, 1.4);
SendClientMessage(playerid, -1, "Merry X-mas");
return 1;
}
Re: Merry Christmas Object -
[Ro]DuReX - 05.12.2012
Quote:
Originally Posted by [O]it_can_be
Код:
CMD:santahat(playerid)
{
SetPlayerAttachedObject(playerid, 3, 19065, 2, 0.120000, 0.040000, -0.003500, 0, 100, 100, 1.4, 1.4, 1.4);
SendClientMessage(playerid, -1, "Merry X-mas, bitch!");
return 1;
}
Omg You did " SendClientMessage(playerid, -1, "Merry X-mas, bitch!");" Don't make him go away :/
This should be
Код:
CMD:santahat(playerid)
{
SetPlayerAttachedObject(playerid, 3, 19065, 2, 0.120000, 0.040000, -0.003500, 0, 100, 100, 1.4, 1.4, 1.4);
SendClientMessage(playerid, -1, "Merry X-mas");
return 1;
}
|
Every N00B can change that string.