[FilterScript] PlayHard Sprunk - 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] PlayHard Sprunk (
/showthread.php?tid=300839)
PlayHard Sprunk -
PlayHard - 02.12.2011
PlayHard Sprunk
Information:
PlayHard Sprunk is a very simple project that you might wanna use to remove Sprunk and chocolate machines around San Andreas.
Why?
I saw one guy asking for it, so I had this idea of making this project to help him and maybe others. You could make your own Sprunk and chocolate machines especially for the server-sided money.
Updates:
Код:
First release:
4 Sprunk machines are gone from Las Venturas(2) and Los Santos(2)
The script:
pawn Код:
public OnPlayerConnect(playerid)
{
PlayHardSprunk(playerid);
return 1;
}
PlayHardSprunk(playerid)
{
RemoveBuildingForPlayer(playerid, 955, 1928.7344, -1772.4453, 12.9453, 0.25);
RemoveBuildingForPlayer(playerid, 955, 2325.9766, -1645.1328, 14.2109, 0.25);
RemoveBuildingForPlayer(playerid, 955, 1520.1484, 1055.2656, 10.0000, 0.25);
RemoveBuildingForPlayer(playerid, 955, 2085.7734, 2071.3594, 10.4531, 0.25);
}
Thank you for reading my thread.
Hoping you finding this one useful.
Copyrights© are reserved to PlayHard.
Re: PlayHard Sprunk -
Psymetrix - 02.12.2011
This is NOT a filterscript. If you take away the code that is required, It's only 4 lines!
You would have been better releasing it as a function.
pawn Код:
public OnPlayerConnect(playerid)
{
RemovePlayerSprunkMachines(playerid);
return 1;
}
RemovePlayerSprunkMachines(playerid)
{
RemoveBuildingForPlayer(playerid, 955, 1928.7344, -1772.4453, 12.9453, 0.25);
RemoveBuildingForPlayer(playerid, 955, 2325.9766, -1645.1328, 14.2109, 0.25);
RemoveBuildingForPlayer(playerid, 955, 1520.1484, 1055.2656, 10.0000, 0.25);
RemoveBuildingForPlayer(playerid, 955, 2085.7734, 2071.3594, 10.4531, 0.25);
}
Re: PlayHard Sprunk -
PlayHard - 02.12.2011
Quote:
Originally Posted by Psymetrix
This is NOT a filterscript. If you take away the code that is required, It's only 4 lines!
|
It's a project actually. I am searching for the sprunk machines. After I find them all, it will be a lot but yeah, thank you. I'll be editing the thread as soon as I get to my laptop. I'm on my cell phone.
Re: PlayHard Sprunk -
Psymetrix - 02.12.2011
Quote:
Originally Posted by PlayHard
It's a project actually. I am searching for the sprunk machines. After I find them all, it will be a lot but yeah, thank you. I'll be editing the thread as soon as I get to my laptop. I'm on my cell phone.
|
Then why are you releasing it early? Ah well, good luck