SA-MP Forums Archive
[FilterScript] [FS] Yagu's Race filterscript [v0.4a - Aug 5th] - 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] [FS] Yagu's Race filterscript [v0.4a - Aug 5th] (/showthread.php?tid=3860)

Pages: 1 2 3


Re: [FS] Yagu's Race filterscript [v0.4a - Aug 5th] - kamalhood - 14.09.2010

it will works?


Re: [FS] Yagu's Race filterscript [v0.4a - Aug 5th] - Stigg - 14.09.2010

Quote:
Originally Posted by kamalhood
View Post
it will works?
What do you mean, will it work ?
Yagu FS uses yr format in your sripts folder to load races.


Re: [FS] Yagu's Race filterscript [v0.4a - Aug 5th] - P4inkill3R - 17.09.2010

So, has anyone ever solved the time problem? 1:4.57 and stuff. I think its related to samp 0.3a version because prior to the 0.3 era i havent noticed that bug. And i have a good memory for this kind of thing, hehe. i tried multiplying the seconds by 10 like SFRERKU sugested (on post number 299 on page 30) but still its dosnt get the time corrected. Any solution to this problem?

Also, greatest fs ever downloaded from this forum, nicely done, yagu.


Re: [FS] Yagu's Race filterscript [v0.4a - Aug 5th] - Stigg - 17.09.2010

Quote:
Originally Posted by P4inkill3R
View Post
So, has anyone ever solved the time problem? 1:4.57 and stuff. I think its related to samp 0.3a version because prior to the 0.3 era i havent noticed that bug. And i have a good memory for this kind of thing, hehe. i tried multiplying the seconds by 10 like SFRERKU sugested (on post number 299 on page 30) but still its dosnt get the time corrected. Any solution to this problem?

Also, greatest fs ever downloaded from this forum, nicely done, yagu.
Try changing the behuman ticks to this, hope this helps.

BeHuman(ticks)
{
new HumanTime[40], minutes, seconds,milliseconds;
minutes=ticks/60000;
ticks=ticks-(minutes*60000);
seconds=ticks/1000;
ticks=ticks-(seconds*1000);
milliseconds=ticks/100;
ticks=ticks-(milliseconds*100);
format(HumanTime,sizeof(HumanTime),"%d.%02d.%02d", minutes,seconds,milliseconds);
return HumanTime;
}


Re: [FS] Yagu's Race filterscript [v0.4a - Aug 5th] - P4inkill3R - 17.09.2010

hey man, it worked, well done

except, HumanTime its a 10 positions array, not 40, hehe


Re: [FS] Yagu's Race filterscript [v0.4a - Aug 5th] - Stigg - 17.09.2010

Quote:
Originally Posted by P4inkill3R
View Post
hey man, it worked, well done

except, HumanTime its a 10 positions array, not 40, hehe
Sorry for the typo.
Glad it helped.


Re: [FS] Yagu\'s Race filterscript [v0.4a - Aug 5th] - coconyr - 20.09.2010

How can I make when a player type / teleport him to join his actual race.


Please ...


Thanks


I love this FS


Re: [FS] Yagu's Race filterscript [v0.4a - Aug 5th] - royal_king - 20.09.2010

Nice One Dude!!


Re: [FS] Yagu's Race filterscript [v0.4a - Aug 5th] - Stigg - 20.09.2010

Anyone help me with this ?
Giving player money if they raced alone. (no cash if you race alone)
If i have 2 or more players racing theres no problem, the prize multi kicks in.
Many thanks.