[FilterScript] PlayHard Sprunk
#1

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.
Reply
#2

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);
}
Reply
#3

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.
Reply
#4

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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)