GAMERS LAIR

WhatNitrous

Well-known member
Messages
23,482
Points
113
my inner thought is that the keys are already attributed, but it"s only my opinion :unsure:
They probably don't have them yet...i'm sure the status is automatically updated by the key count to be honest. So when they add the whole 3 keys for Sonic it should change :LOL:

The fact they don't have them yet is a pretty good sign they won't have them long though. Nobody is getting either of those games

I'm going to buy a second widget spinner :ROFLMAO:
 

WhatNitrous

Well-known member
Messages
23,482
Points
113
who is "i" ? (insert eminem gif here)
Just someone who needed help on the ren'py forum I go to for help myself 🤷‍♂️

I is me in this case :LOL: but they is...well idfk honestly. Just decided to try to answer their question and then to learn by helping them.

Its funny how helping others as a programmer really does help yourself.

🤔 you werent asking about the for statement right? :LOL:

EDIT:

Ohhh, you thought someone else did it. No that was all me bro. It came from multiple examples and suggestions, but the code is my own.

Here
 
Last edited:

syleox

Well-known member
Messages
3,593
Points
113
Just someone who needed help on the ren'py forum I go to for help myself 🤷‍♂️

I is me in this case :LOL: but they is...well idfk honestly. Just decided to try to answer their question and then to learn by helping them.

Its funny how helping others as a programmer really does help yourself.

🤔 you werent asking about the for statement right? :LOL:

EDIT:

Ohhh, you thought someone else did it. No that was all me bro. It came from multiple examples and suggestions, but the code is my own.

Here
noooo
i mean "for i in range" what is the "i" in the code 😄
 

WhatNitrous

Well-known member
Messages
23,482
Points
113
Hell you can find me on the smut sites having code debates with people...some fool just tried to call me out saying I didnt know C with some shit copy and paste toddler internet example to make fun of me for saying I spoke code as a joke...I was dying.

Had to put them in their place :LOL:
 

syleox

Well-known member
Messages
3,593
Points
113
Hell you can find me on the smut sites having code debates with people...some fool just tried to call me out saying I didnt know C with some shit copy and paste toddler internet example to make fun of me for saying I spoke code as a joke...I was dying.

Had to put them in their place :LOL:
the joy to be a newcomer i guess, i assume they got some trolls here too, maybe they"re testing you
 

WhatNitrous

Well-known member
Messages
23,482
Points
113
noooo
i mean "for i in range" what is the "i" in the code 😄
its created when you use the line of code but its basically an automatic counter in that case between the two range of numbers.

its like doing this...

C++:
int i = 0;
int min = 2;
int max = 4;

i = min;

do {
    // this code runs
    i = i + 1;
while (i < max);

basically the code is called one time for each number between a range of numbers...the "i" keeps count of the current number in the loop.
 

WhatNitrous

Well-known member
Messages
23,482
Points
113
the joy to be a newcomer i guess, i assume they got some trolls here too, maybe they"re testing you
Didnt work out well for them :LOL:

I sent them my mouse cursor I posted here before ( 🖕) hahaha.


Just the fact I even know what an interrupt is, really know...was way beyond their skill level and it was obvious as hell.
 

WhatNitrous

Well-known member
Messages
23,482
Points
113
Ya, I love that mouse :ROFLMAO: and I drew it in paint and then coded it myself which makes it even better :LOL:

Your not finding that on an internet example lol.

I'm pretty sure the code they tried to insult me with was Javascript...thats fucking laughable. I don't even call that code...I call it script.

Might have made them seem hot in a python / ren'py coding userbase...but wrong person to target with that kiddy code.

I was like you forgot to add spaces...its gonna crash. Script allows it, in C/C++ it could make something mean 90 other things
 
Last edited:
Top