Adding it in a min just fixing server
Printable View
Adding it in a min just fixing server
Same, the EMU disconnected mostly everyone, some people can get in when they trying entering rooms.
has logged in.
loaded room: "".
has logged out.
has logged out.
1. Disconnecting when open Effects page
2. Achievements tab in inventory don't works
3. If by HC in cata shows you have VIP
4. Landscape don't work
5. VIP wardrobe disabled
6. Add BB teleport
Here you are :)
Anyway, very good project;)
Anybody know how to get all those new features habbo has?
Like clicking an item and selecting "Buy from catalogue" or dropping multiple items at once?
Good idea !
Dropping multiple items requires the r58 swf as well
Revision 133 (Major Update)
Added VIP
Added Room Fix
Added Room limit
Added VIP disable from config
Added Simple Config
Added more AntiCrash
NOTE: I have not updated the DB so you cant get VIP from Catalog
I have the R58 swfs :)
Lol
Lol
Thanks :)
you saved me the work of uploading them :)
Mind fixing the effects page? I hate crashes
Here you go, Delete your old Furniture Table and import this.
Download Link
Thanks, i will test it when i get home :)
hi i found another error that keeps crashing the server
I tested the r58 swf and they are not r58 as usual, r54..
DarkBreakX just ripped my r54 swf's with injected r57 features :l
If you change your clothes to having no shirt on it doesnt change you rlook. Dont know if this is just for me or for many people, but its a bug
Has anyone actually done the BB_Plate yet?
Uh yeah Grostlee or something did.
Pickall Command is not working.
Swimming is not working. And many disconnections..
Yeah 'k, Click here
WTH i don't take r54 i took r57 and i don't took r58 because im working on ripping it from Habbo.com :) Waitin for Bifi's Releases he never comes back :'(
Dark, you used my pack, so please give me credits for that? :S
And you know that habbo's swf's are protected right? :P
No they aren't protected!!! They only the Host so only Habbo.com can access it.. So if they are some Dudes who want to help add me in MSN (for Spazz): Slaxxer@live.de
Dude i don't know how dumb you are, But you've ripped my swf pack and you'r saying those r58 swf's aren't protected?
They are dude :s
Its called 'Crossdomain protection'
Lets Face it.
Until a Miracle comes along, the only Swfs you can use of Habbo's, is its R54 Swfs, and honestly? I dont like them at all.
And yes.
Its true, Habbo HAVE protected their Swfs AND their Variables :)
True, Dark MAY have found a way around this, but I doubt it.
Me and privilege have found an way around it :P
( Check my r57 pack :P )
Ok , how can i use this with my current user and room_item table's because it just keeps d/cing with them.
No, I mean, you cannot use Habbo's Swfs directly off them, you have to host them yourself
Plus, congratu-welldone, I didn't know you cracked the code :)
Does this have the random server crashes fixed?
Looks alright. I'll check it later
I tryed uploading to my SVN and it keeps saying disk is full when its not I have like a shitload left lol
Appears that the BB_Plate has been uploaded
Credits to GetLooseCode:// BATTLE BANZAI
// PART OF dj.matias
// BY GETLOOSE
// 1 = L
// 2 = DO NOT USE
// 3 = R -> 1 L
// 4 = R -> 2 L
// 5 = R -> 3 L COMPLETE
// 6 = G -> 1 L
// 7 = G -> 2 L
// 8 = G -> 3 L COMPLETE
// 9 = B -> 1 L
// 10 = B -> 2 L
// 11 = B -> 3 L COMPLETE
// 12 = Y -> 1 L
// 13 = Y -> 2 L
// 14 = Y -> 3 L COMPLETE
if (Item.GetBaseItem().InteractionType.ToLower() == "bb_red_gate")
{
using (DatabaseClient dbClient = UberEnvironment.GetDatabase().GetClient())
{
dbClient.ExecuteQuery("UPDATE users SET bb_ball = 'r' WHERE id = '" + User.HabboId + "' LIMIT 1");
}
}
if (Item.GetBaseItem().InteractionType.ToLower() == "bb_yellow_gate")
{
using (DatabaseClient dbClient = UberEnvironment.GetDatabase().GetClient())
{
dbClient.ExecuteQuery("UPDATE users SET bb_ball = 'y' WHERE id = '" + User.HabboId + "' LIMIT 1");
}
}
if (Item.GetBaseItem().InteractionType.ToLower() == "bb_blue_gate")
{
using (DatabaseClient dbClient = UberEnvironment.GetDatabase().GetClient())
{
dbClient.ExecuteQuery("UPDATE users SET bb_ball = 'b' WHERE id = '" + User.HabboId + "' LIMIT 1");
}
}
if (Item.GetBaseItem().InteractionType.ToLower() == "bb_green_gate")
{
using (DatabaseClient dbClient = UberEnvironment.GetDatabase().GetClient())
{
dbClient.ExecuteQuery("UPDATE users SET bb_ball = 'g' WHERE id = '" + User.HabboId + "' LIMIT 1");
}
}
if (Item.GetBaseItem().InteractionType.ToLower() == "bb_plate")
{
string pallo;
using (DatabaseClient dbClient = UberEnvironment.GetDatabase().GetClient())
{
pallo = dbClient.ReadString("SELECT bb_ball FROM users WHERE id = '" + User.HabboId + "' LIMIT 1");
}
if (pallo == "r")
{
ServerMessage Message = new ServerMessage(485);
Message.AppendInt32(User.VirtualId);
Message.AppendInt32(33);
SendMessage(Message);
// 3 = R -> 1 L
// 4 = R -> 2 L
// 5 = R -> 3 L COMPLETE
if (Item.ExtraData != "8" && Item.ExtraData != "11" && Item.ExtraData != "14" && Item.ExtraData != "5")
{
if (Item.ExtraData == "0" || Item.ExtraData == "6" || Item.ExtraData == "7" || Item.ExtraData == "9" || Item.ExtraData == "10" || Item.ExtraData == "12" || Item.ExtraData == "13")
{
Item.ExtraData = "1";
}
else if (Item.ExtraData == "1" || Item.ExtraData == "6" || Item.ExtraData == "7" || Item.ExtraData == "9" || Item.ExtraData == "10" || Item.ExtraData == "12" || Item.ExtraData == "13")
{
Item.ExtraData = "3";
}
else if (Item.ExtraData == "3" || Item.ExtraData == "6" || Item.ExtraData == "7" || Item.ExtraData == "9" || Item.ExtraData == "10" || Item.ExtraData == "12" || Item.ExtraData == "13")
{
Item.ExtraData = "4";
}
else if (Item.ExtraData == "4")
{
Item.ExtraData = "5";
}
Item.UpdateState();
}
}
if (pallo == "y")
{
ServerMessage Message = new ServerMessage(485);
Message.AppendInt32(User.VirtualId);
Message.AppendInt32(36);
SendMessage(Message);
// 12 = Y -> 1 L
// 13 = Y -> 2 L
// 14 = Y -> 3 L COMPLETE
if (Item.ExtraData != "8" && Item.ExtraData != "11" && Item.ExtraData != "14" && Item.ExtraData != "5")
{
if (Item.ExtraData == "0" || Item.ExtraData == "6" || Item.ExtraData == "7" || Item.ExtraData == "9" || Item.ExtraData == "10" || Item.ExtraData == "3" || Item.ExtraData == "4")
{
Item.ExtraData = "1";
}
else if (Item.ExtraData == "1" || Item.ExtraData == "6" || Item.ExtraData == "7" || Item.ExtraData == "9" || Item.ExtraData == "10" || Item.ExtraData == "3" || Item.ExtraData == "4")
{
Item.ExtraData = "12";
}
else if (Item.ExtraData == "12" || Item.ExtraData == "6" || Item.ExtraData == "7" || Item.ExtraData == "9" || Item.ExtraData == "10" || Item.ExtraData == "3" || Item.ExtraData == "4")
{
Item.ExtraData = "13";
}
else if (Item.ExtraData == "13")
{
Item.ExtraData = "14";
}
Item.UpdateState();
}
}
if (pallo == "g")
{
ServerMessage Message = new ServerMessage(485);
Message.AppendInt32(User.VirtualId);
Message.AppendInt32(34);
SendMessage(Message);
// 6 = G -> 1 L
// 7 = G -> 2 L
// 8 = G -> 3 L COMPLETE
if (Item.ExtraData != "8" && Item.ExtraData != "11" && Item.ExtraData != "14" && Item.ExtraData != "5")
{
if (Item.ExtraData == "0" || Item.ExtraData == "9" || Item.ExtraData == "10" || Item.ExtraData == "3" || Item.ExtraData == "4" || Item.ExtraData == "12" || Item.ExtraData == "13")
{
Item.ExtraData = "1";
}
else if (Item.ExtraData == "1" || Item.ExtraData == "9" || Item.ExtraData == "10" || Item.ExtraData == "3" || Item.ExtraData == "4" || Item.ExtraData == "12" || Item.ExtraData == "13")
{
Item.ExtraData = "6";
}
else if (Item.ExtraData == "6" || Item.ExtraData == "9" || Item.ExtraData == "10" || Item.ExtraData == "3" || Item.ExtraData == "4" || Item.ExtraData == "12" || Item.ExtraData == "13")
{
Item.ExtraData = "7";
}
else if (Item.ExtraData == "7")
{
Item.ExtraData = "8";
}
Item.UpdateState();
}
}
if (pallo == "b")
{
ServerMessage Message = new ServerMessage(485);
Message.AppendInt32(User.VirtualId);
Message.AppendInt32(35);
SendMessage(Message);
// 9 = B -> 1 L
// 10 = B -> 2 L
// 11 = B -> 3 L COMPLETE
if (Item.ExtraData != "8" && Item.ExtraData != "11" && Item.ExtraData != "14" && Item.ExtraData != "5")
{
if (Item.ExtraData == "0" || Item.ExtraData == "6" || Item.ExtraData == "7" || Item.ExtraData == "3" || Item.ExtraData == "4" || Item.ExtraData == "12" || Item.ExtraData == "13")
{
Item.ExtraData = "1";
}
else if (Item.ExtraData == "1" || Item.ExtraData == "6" || Item.ExtraData == "7" || Item.ExtraData == "3" || Item.ExtraData == "4" || Item.ExtraData == "12" || Item.ExtraData == "13")
{
Item.ExtraData = "9";
}
else if (Item.ExtraData == "9" || Item.ExtraData == "6" || Item.ExtraData == "7" || Item.ExtraData == "3" || Item.ExtraData == "4" || Item.ExtraData == "12" || Item.ExtraData == "13")
{
Item.ExtraData = "10";
}
else if (Item.ExtraData == "10")
{
Item.ExtraData = "11";
}
Item.UpdateState();
}
}
}
I try to save rooms and all i get is d/c whenever i enter them.
even if you only "idle" in the emulator it crashes
How do I download this? I have the newest version of Turtuoise SVN.
Lol You dont have to download it.
Just right click your Htdocs folder, Select SVN Checkout, and put this in as the checkout.
http://spazzlake.co.cc:8881/svn/Uber/
(Username is Guest) with a CAPTIAL G!
Also, it updates itself. Every So Often,
:)
Thank if I helped :)
how to fix the crashes in the pack like rollers and efecshop
my battle BANZAI are not showing pics :(
After I created a Room it disconnect!
Use the database that's included in the svn folder! :P
it still crashes on me effects tell me when or how to fix TNX
a problem
no pic
http://retro-source.info/upload/upload/lreesb.png
effect page crash
http://retro-source.info/upload/upload/twsgunh.png
http://retro-source.info/upload/upload/rmbhg.png
For the Battle Banzai your SWF's are missing.
Here Download Them : Here
Use This Furniture Table and it will stop Disconnecting you at the Pixel or any other category if u did not make any catalog changes.
Download Link
Thanks for the SWF's, i needed them :D
Btw, Spazz, mind fixing so pets can eat? I cant stand them howling lol
Which SWF's should I use? All I manage to get, it the hotel loaded, & then no form of connection to the server. Everything is configured correctly.
You need R57 Swfs
Find prehosted ones and the ones you can host yourself at Habbo Releases section
FIX PETS FOOD!! *rage*
Any1 Have Any Idea Why do i get this Crash Error.
This is the only error as off now crashing the server.
Code:9/22/2010 8:25:13 PM
ERROR Handler caught : System.InvalidOperationException: Collection was modified; enumeration operation may not execute.
at System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource)
at System.Collections.Generic.Dictionary`2.Enumerator.MoveNext()
at Uber.HabboHotel.GameClients.GameClientManager.TestClientConnections() in C:\Users\Administrator\Desktop\Revision 113 SVN\HabboHotel\GameClients\GameClientManager.cs:line 130
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
Anyone got the SqL for BB? The one in this DB doesnt work?
Nice Man..
Spazz, add my battleball codes :P
I will not update the SVN till tomorrow I'm busy getting my Java based emulator ready for Private Beta
@-ClaNHabbo-
This will be fixed in the next build
@PEjump2
I will do
Java emu :o
Cewl..
Yeah and please insert that my battle banzai code a bit faster then tommorow, cuz alot of newbs have problems with it >_<
Spazz can u give me a temporary fix for that random disconnects as its super annoying.
@PEjump2 I'll try to update it today
@-ClaNHabbo- I will update the SVN just wait
BTW: I'm fixing the room glich were you cant walk
You would like to have a look at this.
http://forum.ragezone.com/f353/block...beremu-694408/
And maybe this xD
http://forum.ragezone.com/f353/battl...beremu-694651/
Revision 153:
Small Bug Fix's,
BB code from PEjump2 Added,
Some small things so there no need to list them.
New DB will be added in Revision 155 with some fix's (A Clean Install and Upgrade DB will be made)
You Uploaded your msn's My Recieved Files to the SVN LOL Every1 recieved all ur stuff that should be urs Fix it before it gets spreaded.
Lol, im updating my svn now so i have it xD
there nothing importent in it maybe Pasted_Data_dc30 (Habbov2's User Db structure)
The SVN had all Revisions backed up so I restarted to save space
SVN rest (Source now in Trunk folder) It may take a few seconds to finish the update
Dude you've fucked up walking
cuz you deleted:
In /Messages/Requests/Users.csCode:try
{
string check = Look.Substring(0, 2);
if (check == "sh" || check == "xx")
return;
}
catch { return; }
Im not 100% sure about this but you can try it..
And eh delete all battleball codes and try it aqain cuz i coded something wrong :P
http://forum.ragezone.com/f353/battl...beremu-694651/
So you wont fix the rooms d/c or something?
And if you are developing/fixing an emulator, you should set the thing you are developing for the public first imo. No offence or anything, its my opinion
any fix for this yet. Both erros below crash my server ALOT pls help me
Whats with this error O.o [This error came from the rev 20]Code:System.InvalidOperationException: Collection was modified; enumeration operation may not execute.
at System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource)
at System.Collections.Generic.Dictionary`2.Enumerator.MoveNext()
at Uber.HabboHotel.Rooms.RoomManager.ProcessEngine() in C:\Users\Tyerial\Desktop\Spazzlake SVN Rev 20\HabboHotel\Rooms\RoomManager.cs:line 100
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
Code:
System.ArgumentException: An item with the same key has already been added.
at System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
at System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
at Uber.HabboHotel.RoomBots.PetBot.OnTimerTick() in C:\Users\Tyerial\Desktop\Spazzlake SVN Rev 20\HabboHotel\RoomBots\PetBot.cs:line 394
at Uber.HabboHotel.Rooms.Room.ProcessRoom() in C:\Users\Tyerial\Desktop\Spazzlake SVN Rev 20\HabboHotel\Rooms\Room.cs:line 938
at Uber.HabboHotel.Rooms.RoomManager.ProcessEngine() in C:\Users\Tyerial\Desktop\Spazzlake SVN Rev 20\HabboHotel\Rooms\RoomManager.cs:line 109
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
What cms do you guys use with this emulator?
I can't find a right coded cms. And I can't code by myself.
Thanks
ok, thank you. But is that one right coded with this emulator and db or do i still have a f*cked up cms if I use ubercms and this emulator togheter?
I Keep Receiving "Auth_Ticket" Issues.
Any ideas on how to stop getting them?
I have tried erasing it via the database, but it just keeps coming back. :S
Also, I Have my own SWFs, and my own images ETC.
but my navigator doesnt show the images like it should.
and another thing (final thing) My Categories dont work. If I want to put a few things in the Cafe category, it just muffs up my navigator. How do I fix that?
this is my problem with everything I try :( :
http://i986.photobucket.com/albums/a...Jr2010/onk.png
does anyone have a link for me of a CMS that is configured right. Or can someone PLEASE upload your own cms? :love:
thankyou!
I'm using this one: UberCMS, it's not the standard Ubercms template, but it works 100%.
Spazz, the :pickall command isn't working xD
Oh my god, im getting D/cs at login now too.
Mind fixing that first? Oh and where is the upgrade Db?
You and everyone else is getting d/c only because cause of furniture when, when you enter room. So only way to fix would be deleting furniture.
so no fixes yet for anything? -_- cant wait till this emu stops crashing and dcing us all
Spazz, delete all you'r battleball banzai codes aqain
and add it aqain:
http://forum.ragezone.com/f353/battl...beremu-694651/
( Yeah i fixed most things now :P )
The server goes off in 5 minutes without clicking? O.O
Find:
Replace with:Code:/*
case "pickall":
TargetRoom = UberEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);
if (TargetRoom != null && TargetRoom.CheckRights(Session, true))
{
List<RoomItem> ToRemove = new List<RoomItem>();
ToRemove.AddRange(TargetRoom.Items);
foreach (RoomItem Item in ToRemove)
{
TargetRoom.RemoveFurniture(Session, Item.Id);
Session.GetHabbo().GetInventoryComponent().AddItem(Item.Id, Item.BaseItem, Item.ExtraData);
}
Session.GetHabbo().GetInventoryComponent().UPDATEItems(true);
return true;
}
)*/
// return false;
Code:case "pickall":
TargetRoom = UberEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);
if (TargetRoom != null && TargetRoom.CheckRights(Session, true))
{
List<RoomItem> ToRemove = new List<RoomItem>();
ToRemove.AddRange(TargetRoom.Items);
foreach (RoomItem Item in ToRemove)
{
TargetRoom.RemoveFurniture(Session, Item.Id);
Session.GetHabbo().GetInventoryComponent().AddItem(Item.Id, Item.BaseItem, Item.ExtraData);
}
Session.GetHabbo().GetInventoryComponent().UPDATEItems(true);
return true;
}
return false;
can u add navigator tab ( http://forum.ragezone.com/f353/ubere...-rooms-693693/ )
^ it was added ages ago
Auth_Ticket Reset?
Any help?
I know its easy.
Its easy if you know how to do it
:S
I dc when i try to buy effects and the battle ball banazi or w.e its called doesnt work
but it didnt works.
i cant add private rooms to the public tab at the navigator :S
And i cant add categorys for the public rooms.
i thought its added ages ago :S
ST-00dcc578310afecdd63dc5b97acd8395e1439579-233-uber-fe4
thats the auth_ticket I keep getting,
This svn so far is great thank you for making it public.
Only problems I am seeing currently are crashes in rooms which cause the room to dc any user who enters it. And the creator of the room is unable to get back into the hotel until the server is restarted.
This should be the priority list:
Make it stable (server not crashing if error)
Fixing room d/c
Make upgrade db
If you you use same room_items table or user_items table you d/c and server crashes when you enter room. untill you reset everything i dnt get it.
I think thats a problem with all UberEmu's. What happens is that when you buy a product, the ID is not set (putting ID to 0) and when you open your hand (inventory) the ID 0 d/c's you.
I think this is the problem, if not; then its another problem :P I think it occurs when lag is present :-)