Tessék
#include <a_samp>
#include zcmd //letölthetõ innen http://www.solidfiles.com/d/d20f/
#include fixchars //letölthetõ innen:http://www.solidfiles.com/d/a291/
#define Uttisztito 1
#define Munka_Nincs 1
new Float: UTCP[][3] =
{
{ezekbe},
{a},
{sorokba},
{ird},
{a},
{koordinátát},
{példa: 2141.51, 561.2, 11.2} // 3tagu legyen szerveren beirod: /save van egy ilyen sor (ha gyalog csinálod AddPlayerClass(133,2793.4504,2402.3481,10.8203,5.3268,0,0,0,0,0,0); ami piros az a koordináta kell
//Fontos.Ha az utolsó sor irod ne rakj a végére vesszõt!!
//olyan hosszu lesz az ut ahány cp van
};
CMD:tisztit(playerid,params[])
{
SendClientMessage(playerid,0xfc0000AA,\"Elkezdted a munkát! Menj a Checkpointokba\");
new rand = random(sizeof(UTCP));
SetPlayerCheckpoint(playerid, UTCP[rand][0],UTCP[rand][1],UTCP[rand][2], 4);
GameTextForPlayer(playerid, \"~g~Elkezdted a munkát!\", 3000, 3);
return 1;
}
public OnPlayerEnterCheckpoint(playerid)
{
new rand = random(sizeof(UTCP));
SetPlayerCheckpoint(playerid,UTCP[rand][0],UTCP[rand][1],UTCP[rand][2],4);
SendClientMessage(playerid 0xfc0000AA \"Gratulálok.Sikeresen megtisztitottad az utakat\");
GivePlayerMoney(playerid,4500);
SetPlayerScore(playerid,GetPlayerScore(playerid)+2);
return 1;
}