Posts: 56
Threads: 1
Joined: Aug 2018
Posts: 455
Threads: 29
Joined: Apr 2014
Posts: 1,276
Threads: 6
Joined: Aug 2014
Quote:
Originally Posted by CodeStyle175
useless
|
you are
Posts: 484
Threads: 189
Joined: Jun 2016
Reputation:
0
Useless ? Better release something 'useful' and i'll be glad to leave a comment such as yours.
Posts: 1,915
Threads: 64
Joined: Jan 2016
Reputation:
0
You should add a support to dynamic checkpoint!
Plus, commands shouldn't be present in your include but as an example to show how your include must be used.
Posts: 455
Threads: 29
Joined: Apr 2014
****** is backend programmer so he looks this codehow its build up, but in real server this include doesn't have any usage, and ****** hasn't built any server .
Posts: 1,801
Threads: 21
Joined: Mar 2008
Reputation:
0
A few things that aren't such a good idea:
The player-related TextDraws are global. You use at least 9 per player, so theoretically it's not even possible to create enough for more than 227 players. You attempt to create 9000 TextDraws.
Now you could argue you won't ever race with 227 players, but that doesn't matter as you create all of them at startup. So players with an ID higher than 227 will not see any TDs, regardless how many players are actually in the race. This will probably mess up TDs for the gamemode too, if these are created first.
Use Player TDs for the ones that should contain info for each player, and global TDs for TextDraws that show the same for everyone (but just 1 in total, not 1000).
Or at least create the TDs ONLY at the start of the race for each player in a race, and destroy them again when they leave/finish/disconnect. But that's still not such a good idea.
Posts: 731
Threads: 29
Joined: Feb 2012
Reputation:
0
@Dayrion: Feel free to do so.
@CodeStyle175: Explain us why it doesn't really have any usage when you plug it on a server.
@NaS: As I said that was a long time ago, problems could be occurred.
Posts: 23
Threads: 4
Joined: Feb 2018
Reputation:
0
Its actually usefull for stunting servers
Posts: 637
Threads: 23
Joined: Feb 2013
Reputation:
0
Nice release, but why would an include be "plug'n'play". it is a charachteristic of filter-scripts.
Posts: 1,192
Threads: 10
Joined: Dec 2017
Reputation:
0
Could've been more concise, your usage of spaces messed the indentation too, you should also mention that you're not maintaining it anymore and that it does have problems that were mentioned by Nas.
Posts: 731
Threads: 29
Joined: Feb 2012
Reputation:
0
@NaS: Yeah read Notes in first post, I may edit my post to mention possible bugs.
@coool: I think it's actually the same thing and I am not sure if filterscripts support hooks.
@RogueDrifter: The indentation is that way because GitHub do not support tabs. If you download it everything would look better.
Posts: 4,885
Threads: 57
Joined: Jun 2012
Reputation:
0
"Completely Crap Racing System" Not completely but could be a lot better.