[FilterScript] [FS] KRace
#1

[FS] KRace
Info: Well, this is a race script. I made it a little while ago and decided to release it =]. It is a bit buggy so please post bugs so it can be fixed.

Scripting: It's a pretty shoddy script but it works :P. It comes with a race I made called around LS. To add checkpoints you must use this format:
pawn Код:
CreateRace(RaceName[], RaceTimeout/*Will fail a player if not finished in this time (Time in Seconds)*/, vehicle = -1/*Required vehicle to start the race! (Optional)*/)
For adding checkpoints (THEY MUST BE IN THE ORDER OF THE RACE):
pawn Код:
AddRaceCheckpoint(RaceName[], Float:x, Float:y, Float:z)
I also made a little script to help you save checkpoints:
pawn Код:
#include <a_samp>
#define dcmd(%1,%2,%3) if ((strcmp((%3)[1], #%1, true, (%2)) == 0) && ((((%3)[(%2) + 1] == 0) && (dcmd_%1(playerid, "")))||(((%3)[(%2) + 1] == 32) && (dcmd_%1(playerid, (%3)[(%2) + 2]))))) return 1


public OnPlayerCommandText(playerid, cmdtext[])
{
    dcmd(AddRaceCP, 9, cmdtext);
    return 0;
}

dcmd_AddRaceCP(playerid, params[])
{
     new string[120];
     if(!strlen(params)) return SendClientMessage(playerid, 0x00D300AA, "/AddRaceCP [RaceName]");
     new Float:X, Float:Y, Float:Z;
    GetPlayerPos(playerid, X, Y, Z);
    format(string, sizeof(string), "AddRaceCheckpoint(\"%s\", %f, %f, %f);\r\n", params, X, Y, Z);
    new File:Check = fopen("RaceCPS.txt", io_append);
    fwrite(Check, string);
    fclose(Check);
    return 1;
}
You can also make your own command to start the race by doing this:

pawn Код:
dcmd_Startrace(playerid, params[])
{
  if(!strval(params)) return //Player didn't type anything
  if(/*Admin varaible here*/ == 0) return //Admin level not high enough
  if(StartRace(params) == 0) return //The race name wasn't valid or there is currently a race running
  if(StartRace(params) == 1) return //The race was started!
  return 1;
}
Screenshots:





Download:
PWN + AMX
Pastebin
Reply


Messages In This Thread
[FS] KRace - by [HiC]TheKiller - 25.02.2010, 03:36
Re: [FS] KRace - by Jontay - 25.02.2010, 04:43
Re: [FS] KRace - by [HiC]TheKiller - 25.02.2010, 04:52
Re: [FS] KRace - by morris91 - 25.02.2010, 06:43
Re: [FS] KRace - by [HiC]TheKiller - 25.02.2010, 08:10
Re: [FS] KRace - by Jontay - 25.02.2010, 09:09
Re: [FS] KRace - by [03]Garsino - 25.02.2010, 10:17
Re: [FS] KRace - by »»»Hakam - 25.02.2010, 13:59
Re: [FS] KRace - by AiVAMAN - 25.02.2010, 14:32
Re: [FS] KRace - by [HiC]TheKiller - 25.02.2010, 17:54
Re: [FS] KRace - by DiddyBop - 26.02.2010, 10:06
Re: [FS] KRace - by [MWR]Blood - 19.03.2010, 14:06
Re: [FS] KRace - by GunFight - 19.03.2010, 14:25
Re: [FS] KRace - by Lorenc_ - 06.04.2010, 23:46
Re: [FS] KRace - by MrEnd - 07.04.2010, 11:12
Re: [FS] KRace - by Cardinaal - 15.04.2010, 13:52
Re: [FS] KRace - by Adil - 15.04.2010, 13:54
Re: [FS] KRace - by Cardinaal - 15.04.2010, 14:10
Re: [FS] KRace - by [MWR]Blood - 15.04.2010, 14:28
Re: [FS] KRace - by Cardinaal - 15.04.2010, 14:30
Re: [FS] KRace - by Haji - 15.04.2010, 17:09
Re: [FS] KRace - by [HiC]TheKiller - 23.04.2010, 05:19
Re: [FS] KRace - by Cardinaal - 23.04.2010, 05:40
Re: [FS] KRace - by [HiC]TheKiller - 23.04.2010, 12:13
Re: [FS] KRace - by Cardinaal - 23.04.2010, 14:41
Re: [FS] KRace - by GabryIIPazzo2 - 24.04.2010, 06:50
Re: [FS] KRace - by [CripZ]SERCH - 19.05.2010, 08:51
Re: [FS] KRace - by ViruZZzZ_ChiLLL - 19.05.2010, 09:04
Re: [FS] KRace - by [HiC]TheKiller - 19.05.2010, 10:38
Re: [FS] KRace - by vitalij931 - 19.05.2010, 10:51
Re: [FS] KRace - by Deat_Itself - 19.05.2010, 15:48
Re: [FS] KRace - by bRn - 19.05.2010, 20:30
Re: [FS] KRace - by Polpettina - 18.06.2010, 00:23
Re: [FS] KRace - by zSuYaNw - 18.06.2010, 00:43
Re: [FS] KRace - by Polpettina - 29.07.2010, 17:49
Re: [FS] KRace - by a-day - 27.12.2010, 21:28
Re: [FS] KRace - by jaksimaksi - 24.01.2011, 18:29
Re: [FS] KRace - by Davz*|*Criss - 21.08.2011, 08:42
Re: [FS] KRace - by Fnatic. - 27.06.2012, 17:49
Respuesta: [FS] KRace - by lvlaid - 15.09.2012, 09:57
Re: [FS] KRace - by karolis1478 - 18.12.2012, 09:21
Re: [FS] KRace - by karolis1478 - 20.12.2012, 17:20
Respuesta: [FS] KRace - by Mogudan2 - 25.02.2013, 15:14
Re: Respuesta: [FS] KRace - by karolis1478 - 25.02.2013, 19:17
Re: [FS] KRace - by Razer1 - 20.04.2013, 09:04
Re : [FS] KRace - by Sueep - 27.05.2015, 17:20

Forum Jump:


Users browsing this thread: 3 Guest(s)