Post: Why do people make their scripting look like cancer?
05-14-2016, 02:16 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); I have a legitimate question right...

How come when i look at other people's code their grammar looks like this for example:

    drawText

if ( !level.rankedmatch )

level endon( "lol_Spaces" );

for (;Winky Winky

player.pers[ "lol_Spaces" ] = 0;

wait .05

and the worst

wait 0.0001;


The biggest question i have is why do people never use
a capital letter for the start of a function name??????

They all use a lowercase for the first word followed by the rest
with capitals, who the hell started that trend? Is there actually some kind of
performance wise/easier to code reason for that it looks ugly asf.

    wowAmazingPerformanceIncrease();

self.proffesionalWayOfTypingShit;


2nd why do people enjoy putting spaces on everything?


    level endon(                  "aint_enough_spaces_lmao"                     );

for ( ; ; )

if ( !level.rankedmatch )


Looks very ugly if you ask me why not just:

    DrawText

level endon("aint_enough_spaces_lmao");

for(;Winky Winky

if(!level.rankedmatch)

self.stopusingunessecarycapsufckingidoit;


And i personally use:

    wait 0.05;


For loops.
(adsbygoogle = window.adsbygoogle || []).push({});

The following 2 users say thank you to OfficialCoolJay for this useful post:

DoraTheKiller97, HiddenHour
05-14-2016, 02:26 PM #2
Nate͍
Do a barrel roll!
Originally posted by OfficialCoolJay View Post
I have a legitimate question right...

How come when i look at other people's code their grammar looks like this for example:

    drawText

if ( !level.rankedmatch )

level endon( "lol_Spaces" );

for (;Winky Winky

player.pers[ "lol_Spaces" ] = 0;

wait .05

and the worst

wait 0.0001;


The biggest question i have is why do people never use
a capital letter for the start of a function name??????

They all use a lowercase for the first word followed by the rest
with capitals, who the hell started that trend? Is there actually some kind of
performance wise/easier to code reason for that it looks ugly asf.

    wowAmazingPerformanceIncrease();

self.proffesionalWayOfTypingShit;


2nd why do people enjoy putting spaces on everything?


    level endon(                  "aint_enough_spaces_lmao"                     );

for ( ; ; )

if ( !level.rankedmatch )


Looks very ugly if you ask me why not just:

    DrawText

level endon("aint_enough_spaces_lmao");

for(;Winky Winky

if(!level.rankedmatch)

self.stopusingunessecarycapsufckingidoit;


And i personally use:

    wait 0.05;


For loops.


This is all so true.
05-14-2016, 03:17 PM #3
Patrick
League Champion
damn son!
05-14-2016, 04:15 PM #4
Procyon
Gym leader
.05 Because it's shorter, and it helps in the long run. And using a space ( In the right place ) does make it look cleaner!

The following user thanked Procyon for this useful post:

OfficialCoolJay
05-14-2016, 05:42 PM #5
DoraTheKiller97
Treasure hunter
He's right. Ever since i started coding, i never did that. xD This thread is hilarious.
05-14-2016, 06:33 PM #6
Sephiroth29
Do a barrel roll!
the most of them are 10 years old and it's easier to copy-paste/steal than to create their own stylish menu.
05-14-2016, 07:14 PM #7
Patrick
League Champion
Originally posted by Sephiroth29 View Post
the most of them are 10 years old and it's easier to copy-paste/steal than to create their own stylish menu.


what does this thread have to do with people c+p'ing, its simply just asking why people do things the way they do, and the answer is that everyone has a different way of coding and a different style, if someone wants to do "wait .05;" and the next person wants to do "wait 0.05;" it doesn't matter since it does the same thing, even though technically speaking ".05" is the correct way since the zero doesn't represent anything but like i said before both ways are correct, other than that if people want to c+p allow it as long as you know you have achieved something how big nor small it is, at least you have something to feel proud of!

In fact to summon this thread up as a whole everyone codes in their own way so let them get on with it since its technically correct Smile. if you know how to clean up your code you are all good and hopefully we can carry on learning as we get better at GSC.
05-14-2016, 09:01 PM #8
BullyWiiPlaza
Climbing up the ladder
Everyone has his/her own coding conventions. Starting with lowercase and then capitalizing words is a convention of various programming languages like Java so no, it's not some idiot who started it Winky Winky

I prefer the following style:
    if(level.myVar)
{
doShit();
thisIsBetterReadable = 1337;
wait 0.05;
waitForNoobs();
}

But I do agree that those unnecessary spaces like
    doShit( "noob" );
are retarded. Also name your variables and functions to closely resemble their purpose instead of fuck() noob() or p(). It will be much easier to read and you look less like a skid.

The following user thanked BullyWiiPlaza for this useful post:

HiddenHour
05-14-2016, 11:55 PM #9
HiddenHour
I defeated!
Originally posted by officialcooljay View Post
the biggest question i have is why do people never use
a capital letter for the start of a function name??????

tears [-triggered-] tears
05-15-2016, 12:01 AM #10
Originally posted by BullyWiiPlaza View Post
Everyone has his/her own coding conventions. Starting with lowercase and then capitalizing words is a convention of various programming languages like Java so no, it's not some idiot who started it Winky Winky

I prefer the following style:
    if(level.myVar)
{
doShit();
thisIsBetterReadable = 1337;
wait 0.05;
waitForNoobs();
}

But I do agree that those unnecessary spaces like
    doShit( "noob" );
are retarded. Also name your variables and functions to closely resemble their purpose instead of fuck() noob() or p(). It will be much easier to read and you look less like a skid.


Originally posted by dorathekiller97 View Post
He's right. Ever since i started coding, i never did that. xD This thread is hilarious.


Originally posted by OfficialCoolJay View Post
I have a legitimate question right...

How come when i look at other people's code their grammar looks like this for example:

    drawText

if ( !level.rankedmatch )

level endon( "lol_Spaces" );

for (;Winky Winky

player.pers[ "lol_Spaces" ] = 0;

wait .05

and the worst

wait 0.0001;


The biggest question i have is why do people never use
a capital letter for the start of a function name??????

They all use a lowercase for the first word followed by the rest
with capitals, who the hell started that trend? Is there actually some kind of
performance wise/easier to code reason for that it looks ugly asf.

    wowAmazingPerformanceIncrease();

self.proffesionalWayOfTypingShit;


2nd why do people enjoy putting spaces on everything?


    level endon(                  "aint_enough_spaces_lmao"                     );

for ( ; ; )

if ( !level.rankedmatch )


Looks very ugly if you ask me why not just:

    DrawText

level endon("aint_enough_spaces_lmao");

for(;Winky Winky

if(!level.rankedmatch)

self.stopusingunessecarycapsufckingidoit;


And i personally use:

    wait 0.05;


For loops.


It's all preference. Let people code however they like.

Not a productive question, closed.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo