Blockland Forums > Modification Help
survivalRP - holywtf bump! and maybe finishing up some loose ends??
AGlass0fMilk:
I think he's saying that you overcomplicated it.
Azimuth:
--- Quote from: AGlass0fMilk on August 10, 2009, 09:08:15 AM ---I think he's saying that you overcomplicated it.
--- End quote ---
It doesn't matter, it's correct.
Ephialtes:
It may be correct but it's inefficient and that's the point I was making. Maybe it's just because I'm a professional programmer and I understand the impact bad code can have on performance.
Kalphiter:
--- Quote from: Ephialtes on August 10, 2009, 12:30:46 PM ---It may be correct but it's inefficient and that's the point I was making. Maybe it's just because I'm a professional programmer and I understand the impact bad code can have on performance.
--- End quote ---
You can talk to Sun about that.
Ephialtes:
It's amazing how you can misunderstand everything I say.
--- Code: ---mCeil(getRandom() * 100);
--- End code ---
That is less efficient than this:
--- Code: ---getRandom(1,100);
--- End code ---
Do you understand yet?