The source is lost, please PM me if you have it.
Hey guys.
I made a simple emulator written in Visual Basic - I'll give the source out to those who would contribute or if I get good feedback. Anyway if you say 'I don't like this' or any crap along those lines you don't belong on this thread
I'm not trying to be an epic 1337z0r coder0zrzzz; It's just something unique ;)
Source (fixed);
http://quackster.net/flatFileSever/F...eEmulator3.rar
Working Client (data is default);
http://quackster.net/client.php?ssoT...host=localhost
- SSO
- Login
- Private Room listing
- Enter room
- Move user
- Chat
- Wallpaper
- Floorpaper
- Sends the (@E) packet so you see yourself on the grey bar.
- Very buggy public room <don't use!
People should like flat file emulators because they are ready2run :grin:



Originally Posted by
Quackster
Add these in (Packets.bas) then recompile
Ability to create rooms;
Code:
Case "@]"
Dim RoomName As String
Dim Model As String
Dim RoomId As Integer
Model = Split(Mid(data, 3), "@G")(1)
RoomName = Left(Mid(data, 5), decodeB64(Left(Mid(Mid(data, 3), 1, 3), 2)))
RoomId = FSO.OpenTextFile(App.Path & "\ROOMS\roomcount.txt", ForReading).ReadAll + 1
FSO.CreateFolder (App.Path & "\ROOMS\" & RoomId)
FSO.CreateTextFile (App.Path & "\ROOMS\" & RoomId & "\rname.txt")
FSO.OpenTextFile(App.Path & "\ROOMS\" & RoomId & "\rname.txt", ForWriting).Write RoomName
FSO.CreateTextFile (App.Path & "\ROOMS\" & RoomId & "\model.txt")
FSO.OpenTextFile(App.Path & "\ROOMS\" & RoomId & "\model.txt", ForWriting).Write Model
FSO.CreateTextFile (App.Path & "\ROOMS\" & RoomId & "\description.txt")
FSO.OpenTextFile(App.Path & "\ROOMS\" & RoomId & "\description.txt", ForWriting).Write "New room! :D"
FSO.CreateTextFile (App.Path & "\ROOMS\" & RoomId & "\floorpaper.txt")
FSO.OpenTextFile(App.Path & "\ROOMS\" & RoomId & "\floorpaper.txt", ForWriting).Write "0"
FSO.CreateTextFile (App.Path & "\ROOMS\" & RoomId & "\wallpaper.txt")
FSO.OpenTextFile(App.Path & "\ROOMS\" & RoomId & "\wallpaper.txt", ForWriting).Write "0"
FSO.CreateTextFile (App.Path & "\ROOMS\" & RoomId & "\landscape.txt")
FSO.OpenTextFile(App.Path & "\ROOMS\" & RoomId & "\landscape.txt", ForWriting).Write "0.0"
FSO.CreateTextFile (App.Path & "\ROOMS\" & RoomId & "\owner.txt")
FSO.OpenTextFile(App.Path & "\ROOMS\" & RoomId & "\owner.txt", ForWriting).Write HabboName(a)
FSO.CreateTextFile (App.Path & "\ROOMS\" & RoomId & "\inroom.txt")
FSO.OpenTextFile(App.Path & "\ROOMS\" & RoomId & "\inroom.txt", ForWriting).Write "0"
FSO.OpenTextFile(App.Path & "\ROOMS\roomcount.txt", ForWriting).Write RoomId
SendData Index, "@{" & encodeVL64(RoomId) & RoomName & Chr(1)