Use any CMS you wish as long as you can do simple editing to make the CMS compattible with the database provided. Also in the original post it has a link to the database
Database for Habbo.com Furnidata (english): http://www25.zippyshare.com/v/353046/file.html
Database for Habbo.es Furnidata (spanish): http://www5.zippyshare.com/v/94170852/file.html
How should I do the config for this?
and the client.php so it connects.
anybody know what's the problem with that?
http://img15.hostingpics.net/pics/41...ulatorfail.png![]()
I made a tutorial on how to make your own commands, check out http://forum.ragezone.com/f335/own-m...mples-1033189/
I heard you stopped developing this. That's a shame!
Here you go, @AfrikaNL http://habni.me/habbo-imaging.rar
Hello i need to ask u how i connect this to the database (Phpmyadmin).
![]()
- - - Updated - - -
@Go into your database and select furniture, than you need to set stack_heigt VARCHAR 255 to: stack_heigt INT 11Synoxis
I change it, and my emulator works fine, but, stack_height need to be VARCHAR 255, emulator works fine if you change it to INT 11, but, when you update to INT, stack magic tile wont work i think. This is the error line on itemmaneger.cs: height = Convert.ToDouble(dataRow["stack_height"]);
You know a fix that i can set stack_height back to VARCHAR 11?
- - - Updated - - -
But maybe, i gonna test it, if you change on itemmanager.cs: height = Convert.ToDouble(dataRow["stack_height"]); To
height = Convert.string(dataRow["stack_height"]);, the emulator works fine on VARCHAR 11
Change PC lang to Eng(USA)
'Double' means [int].[int], 'int' means [int], 'varchar' means "[text]", char means '[text]'
Stack height HAS to have the column type set to double. Varchar will also work, but it's not correct, int will not work because of the numbers after the decimal sign.
You have to change your decimal sign from a comma to a point to fix the stack height. This has been around since ever here, it's not rocket science to fix this.