Posts: 3
Threads: 1
Joined: May 2013
Reputation:
0
I'm currently starting to code a new RolePlay gamemode, My question is.
What's better, writing the whole gamemode in one script or make each system in seperate files and include them into the main gamemode?
Posts: 887
Threads: 251
Joined: Jun 2011
Reputation:
0
I am using includes which is the best, I think :/
Posts: 125
Threads: 8
Joined: May 2012
Reputation:
0
I'm not sure about speed, but it's definitely a lot easier to find any functions and even problems if they're all in includes.
It's also much easier to move from everything from its individual include to a gamemode. It's a lot more tedious to remove everything from a GM and make it an include.
Posts: 322
Threads: 29
Joined: Feb 2012
Reputation:
0
Make an include for each system. Trust me it's the best way.
Posts: 548
Threads: 35
Joined: Jul 2012
Reputation:
0
Making each system separate is better option cause it will be easier for you to disable those features in game through some coding in the main script. Don't make the separate part as filterscript, Include would be better option so that you can co-relate the includes and the main GM.