[FilterScript] Fun Little Script - 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: Filterscripts (
https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Fun Little Script (
/showthread.php?tid=408145)
Fun Little Script -
yourfunworld - 17.01.2013
There was another post I made so this may look like a double post, but the other post I edited everything out due to it being in the wrong section.
This script was meant for trolls and I decided to make it, for rcon admins who feel trollish. :P
Rep would be thanked for greatly, but I know since this is so basic I most likely won't get anything but oh well. :P
Код:
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Troll and Rickroll by John aka yourfunworld");
print(" Check out my dedicated server at samp.yourfunworld.com:7777");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
print("Thanks for using my script. :P");
return 1;
}
CMD:yfwrick(playerid, params[])
{
#pragma unused params
if (IsPlayerAdmin(playerid))
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
PlayAudioStreamForPlayer(i,"http://haxbyjaku.com/rrrproxy/rickroll.mp3");
SendClientMessage(i, COLOR_RED, "YOU JUST GOT RICKROLLED!");
}
return 1;
}
}
CMD:yfwtroll(playerid, params[])
{
#pragma unused params
if (IsPlayerAdmin(playerid))
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
PlayAudioStreamForPlayer(i,"http://a.tumblr.com/tumblr_lr111o8nqD1qj6d2ro1.mp3");
SendClientMessage(i, COLOR_RED, "YOU JUST GOT TROLLED!");
}
return 1;
}
}
# Please do not remove my credits.. It's pretty much hidden anyway and not advertised. :)
CMD:yfwcredits(playerid, params[])
{
SendClientMessage(playerid, COLOR_RED, "YFWTroll & Rickroll Script by yourfunworld");
return 1;
}
#endif
If you are just someone browsing through everything and want a server just look at my signature.
It adds commands: /yfwtroll and /yfwrick
/yfwtroll - Plays the trololol song on every client
/yfwrick - Plays the Rickroll song on every client
Re: Fun Little Script -
PauloKradausky - 17.01.2013
great script, i like trolling, i gonna use it, hahhahahahaha.
Re: Fun Little Script -
yourfunworld - 17.01.2013
Glad you like it.... :P
Re: Fun Little Script -
fanta291327 - 17.01.2013
Dafuq it do?
Re: Fun Little Script -
yourfunworld - 17.01.2013
Updated
Re: Fun Little Script -
JaKe Elite - 17.01.2013
What the fuck is this?
Re: Fun Little Script -
Deathlane - 17.01.2013
Quote:
Originally Posted by Romel
What the fuck is this?
|
"Fun Little Script"
OT: Nice anyways, I'd like to see more of your releases. Try doing more advanced scripts because.. Nobody will even try this.
Re: Fun Little Script -
RajatPawar - 17.01.2013
Basically, you get to hear this ingame: See ---> hear, gj anways
[ame]http://www.youtube.com/watch?v=oHg5SJYRHA0[/ame]
Re: Fun Little Script -
BodyBoardVEVO - 17.01.2013
For Real... I love RickRoll song, but TROLOLOL song i am laughing
Re: Fun Little Script -
yourfunworld - 17.01.2013
I'm surprised anyone likes this... *_*
Re: Fun Little Script -
yourfunworld - 18.01.2013
Updated once again..