I'm loading this faster than most CMS' I've seen in the retro community, including Rev.
p.s. glad to see fellow node.js developers in the community! You should take a look at my Node EMU development if you get the chance
Are you talking about the bot appearing in your inventory or showing up in the room?
If option #2:
A bot uses the same RoomUser instance as a regular player, start from there.
This is the command i wrote to send police bots to my room, I reckon you can cherry pick from that...
Agreed with @Kust123.
Their would be no reason to check for a users furniture if they're offline so using SQL in this instance is redundant. You should just use (not necessarily LINQ) but the methods provided in the emulator to check if a user has a certain item in their inventory because all...
Dis-gust-ing
Why are you using your database to store simple cooldowns that can be handled using simple caching of 2 int variables (1 const and a user variable) then a simple if-statement to check.
imo: Holo, Habbo, Rage, and even Fabbo had better cooldown implementations then this. Creating a...
Install a java IDE like intellij or eclipse to write code and debug/compile.
One of your other options would be compiling your java app via command line and you can google how to do that.
When did I ever state that his account was registered for 5 years? I was only implying how fishy it was that he was in the "habbo community" for 5 years without having a DevBest account, and the first day he registers he posts a thread in this section (Recruitment section) which is strongly...
"5 years"
"Member Since: Today"
fishy, I wonder if the new account is due to a previous reputation around here that would cost you a job such as this one. But I have no grounds for this accusation, so... goodluck.
Abraham Lincoln.
"I had a convo with the President, I paid to go and see him
Thinkin' about the things I said I'd say when I would see him
Feelin' nervous, sittin' in a room full of white folks
Thinkin' about the black man plight, think I might choke
Nope, raised my hand and asked a man a...
"Code readability"...
https://github.com/nodejs/node/blob/db1087c9757c31a82c50a1eba368d8cba95b57d0/src/node.d#L26
Quote straight out of Node.js source code:
"Be warned: the mechanics here are seriously ugly -- and one must always
keep in mind that clean abstractions often require filthy...
Node doesn't fully support ES6 (especially not features like import/export due how incompatible it is to their current module system, and unnecessary it would be to compromise for such a simple feature). What you guys use just trans-compiles your ES6 back into ES5 like CoffeeScript does to...
I was thinking of doing this, yet never had the time to start on it.
EDIT:
Indeed dependency management in Go is poor but If you're having a bit of trouble with it then this might be too big of a leap for you. I'd consider writing a few basic applications in Golang before attempting a Habbo server.