SpazzLake, will :pickall be released int he next update?
Printable View
SpazzLake, will :pickall be released int he next update?
I have this error and closes the server
http://img215.imageshack.us/img215/1354/dibujodbw.jpg
as I fix it?
The battle banzai is a lil broke it puts u on a team but not into a battle banzai bouncer thingy and the tiles dont light up in colour and the score boars dont work and also u dc when u client special effects
SVN updated "EMULATOR NOT TESTED DUE TO MY HOTEL DIED" so if someone would test that would be nice
should be fixed now
same issue as before
Code:9/27/2010 12:51:31 AM
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\Current\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()
I'm programming the archieviements! See the topic:
http://forum.ragezone.com/f353/ubere...ements-695466/
Add the server, and please put my credits.
Thanks.
@ Spazz
:pickall included in this new release?
and maybe include a credit update with a message saying:
You have received 200 credits, you will get more credits in 15 minutes.
Search in HabboHotel/Misc/ChatCommandHandler.cs -
search for: case "pickall":
replace it all with:
Excuse my filming, I'm still learning how to use the program hehe, I was planning to include my talking in the image though I didn't make it large enough :pPHP Code:case "pickall":
TargetRoom = UberEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);
if (TargetRoom != null && TargetRoom.CheckRights(Session, true))
{
List<RoomItem> ToRemove = new List<RoomItem>();
lock (TargetRoom.Items)
{
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;
http://i54.tinypic.com/288sinq.gif
That's already in there, but it does not work.
Okay I get it, thanks, would you have any idea on getting a credit system to work, where you get like 200 credits every 15 minutes, and an alert when you've received them?