Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

Jabbo v3.2 stacking furniture

Newbie Spellweaver
Joined
May 21, 2024
Messages
15
Reaction score
1
How can I stack furniture?

I can only stack items on carpets with the version of 3.2 ..
Do I need to code it in somewhere or do i need a better emulator or remade client files?

~ThaNKS
 
Server Information
Jabbo v3.2
I quickly had a look at the source. There seems to be a check for carpet here:

I wouldnt recommend running Jabbo in production as it has a few security issues.

I'm actually surprised you managed to get it to work. Do you also have the website? I kinda miss it haha!
 
Upvote 0
I quickly had a look at the source. There seems to be a check for carpet here:

I wouldnt recommend running Jabbo in production as it has a few security issues.

I'm actually surprised you managed to get it to work. Do you also have the website? I kinda miss it haha!
I have all in localhost xampp. Made a new website also with log in & managed to make createroom.php working👍🏻

I quickly had a look at the source. There seems to be a check for carpet here:

I wouldnt recommend running Jabbo in production as it has a few security issues.

I'm actually surprised you managed to get it to work. Do you also have the website? I kinda miss it haha!
What kind of security issues are we talking about?
Well nowadays you can decrypt md5 formed passwords easily which is kinda sad.
Is it still more secure than r63a retros?
 
Last edited:
Upvote 0
I have all in localhost xampp. Made a new website also with log in & managed to make createroom.php working👍🏻


What kind of security issues are we talking about?
Well nowadays you can decrypt md5 formed passwords easily which is kinda sad.
Is it still more secure than r63a retros?
I mean on the todo it literally says..
- make php mysql PDO (prevent from sql injection)
If you don't do this then your db is going to get trashed by every ass hole that stops by.

And yeah you need to make sure you are using bcrypt, scrypt, or Argon2 for password hashing it's absolutely unacceptable to use anything else.

It's old code and probably needs a lot of work to modernize it I'm sure you have quite a challenge ahead of you.
 
Last edited:
Upvote 0
I mean on the todo it literally says..
- make php mysql PDO (prevent from sql injection)
If you don't do this then your db is going to get trashed by every butt hole that stops by.

And yeah you need to make sure you are using bcrypt, scrypt, or Argon2 for password hashing it's absolutely unacceptable to use anything else.

It's old code and probably needs a lot of work to modernize it I'm sure you have quite a challenge ahead of you.
Great what should I do with The MySQL. What u mean about pdo? Hoping someone would continue this project and share some release. Its not far from r63c habbo...
 
Upvote 0
Back