Re: [Uber] SpazzLake's SVN
All The Fix's can be found hear:
Fix's
Re: [Uber] SpazzLake's SVN
Walking into rooms works for a couple of users online then after about 10 users online you cannot walk into rooms.
---------- Post added at 05:25 PM ---------- Previous post was at 05:10 PM ----------
http://i52.tinypic.com/34orp4y.png
Re: [Uber] SpazzLake's SVN
Hmm i was just about to have ago at adding the battle banzai my self when i found it had already beens added so why it doesnt work im baffled.
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
Ubercheese
Walking into rooms works for a couple of users online then after about 10 users online you cannot walk into rooms.
---------- Post added at 05:25 PM ---------- Previous post was at 05:10 PM ----------
http://i52.tinypic.com/34orp4y.png
I Think This Fix's It Process Engine Fix??
Re: [Uber] SpazzLake's SVN
How comes i dont get a ball from the bb gates?
Re: [Uber] SpazzLake's SVN
Fixed other error that stopped walking now theres a new error that stops users walking into rooms.
http://img408.imageshack.us/img408/5124/walkc.png
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
Ubercheese
Iv been told by spazz that its a common pet bug i have it aswell and hes working on a fix
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
Ubercheese
Try Pet Bug Fix??
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
SpazzEmu
thanks i been posting this error for awhile now thanks woot testing it now
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
SpazzEmu
I can confirm this 100% fixes the pet bug
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
Tyerial
thanks i been posting this error for awhile now thanks woot testing it now
I made the fix for my hotel when you first posted never got around to releasing it till now.
SVN updated Added all of my Fix's that I posted on the SpazzLake Forum.
Re: [Uber] SpazzLake's SVN
The cancel button on trade is no longer functioning.
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
Ubercheese
The cancel button on trade is no longer functioning.
i do not have this issue will check now -_-
also there is another bug where you can talk but can not move until u reset the server and fix for this?
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
Tyerial
i do not have this issue will check now -_-
also there is another bug where you can talk but can not move until u reset the server and fix for this?
Does this happen all the time or sometimes is there any error messages?
Re: [Uber] SpazzLake's SVN
How do I change the VIP icon in catalogue (where it displays how many months and days left) back to the HC icon?
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
SpazzEmu
Does this happen all the time or sometimes is there any error messages?
no no error messages, just u be talking and then all of a sudden no one can move.. it only happened once.. but it does happene rarly. and u can still talk just no move like something in the room or hotel is holding u in one place..
Now another error -_-
It wont give any errors out but it will just sit there and say DB update successfully and keep doing it but the cms will say hotel offline like the emu crashed but its still running and no NO one can connect till i restart it -_-
Re: [Uber] SpazzLake's SVN
Tyerial, I have had the same issue with uber.
The TCP listener stops accepting connections and just idles. It still accepts CMS ('mus') connections, but nobody can connect until you restart the server.
This server = a huge mess.
Re: [Uber] SpazzLake's SVN
Spazz hotel freezes characters do not move
uber gives no errors but no one can enter
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
Andrew
Tyerial, I have had the same issue with uber.
The TCP listener stops accepting connections and just idles. It still accepts CMS ('mus') connections, but nobody can connect until you restart the server.
This server = a huge mess.
anyway to fix it? without moving from ispazz =/
---------- Post added at 11:04 PM ---------- Previous post was at 11:00 PM ----------
Quote:
Originally Posted by
SpazzEmu
Confirmed 100% this works thanks ispazz
Re: [Uber] SpazzLake's SVN
Whats the MySQL Connector?
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
AnthonyColon
Whats the MySQL Connector?
latest should work but i had none installed and still works so eh
Re: [Uber] SpazzLake's SVN
When other people connect and etc the server like shuts down and closes automatically, has that been fixed?
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
Ðavid
When other people connect and etc the server like shuts down and closes automatically, has that been fixed?
as posted by spazzemu
Ok lol full Credits to spazz for this fix but to fix the crash every 5-10 minutes simply replace ur program.cs code with this
Code:
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Security.Permissions;
using Uber.Core;
namespace Uber
{
public class Program
{
[SecurityPermission(SecurityAction.Demand, Flags = SecurityPermissionFlag.ControlAppDomain)]
public static void Main(string[] args)
{
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(Program.MyHandler);
try
{
UberEnvironment.Initialize();
while (true)
{
CommandParser.Parse(Console.ReadLine());
}
}
catch (Exception e)
{
Console.Write(e.Message);
Console.ReadKey(true);
}
}
private static void MyHandler(object sender, UnhandledExceptionEventArgs args)
{
Console.WriteLine("ERROR Handler caught : " + ((Exception)args.ExceptionObject).ToString());
// Environment.Exit(2);
Console.ReadKey(true);
}
}
}
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
Tyerial
as posted by spazzemu
Ok lol full Credits to spazz for this fix but to fix the crash every 5-10 minutes simply replace ur program.cs code with this
Code:
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Security.Permissions;
using Uber.Core;
namespace Uber
{
public class Program
{
[SecurityPermission(SecurityAction.Demand, Flags = SecurityPermissionFlag.ControlAppDomain)]
public static void Main(string[] args)
{
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(Program.MyHandler);
try
{
UberEnvironment.Initialize();
while (true)
{
CommandParser.Parse(Console.ReadLine());
}
}
catch (Exception e)
{
Console.Write(e.Message);
Console.ReadKey(true);
}
}
private static void MyHandler(object sender, UnhandledExceptionEventArgs args)
{
Console.WriteLine("ERROR Handler caught : " + ((Exception)args.ExceptionObject).ToString());
// Environment.Exit(2);
Console.ReadKey(true);
}
}
}
So I'll add this into program.cs, then i save it, then i debugg, then the client starts up, and its been saved into the emulator? if that makes sense? can i jsut save it and then open the emulator in debugg, or do i need to debugg the actual uberemu.cprjo or w/e to get this working
Re: [Uber] SpazzLake's SVN
Quote:
Originally Posted by
Flurrie
So I'll add this into program.cs, then i save it, then i debugg, then the client starts up, and its been saved into the emulator? if that makes sense? can i jsut save it and then open the emulator in debugg, or do i need to debugg the actual uberemu.cprjo or w/e to get this working
u replace it your whole program.cs with that code then recompile or debug and its fixed