Use the Mysql Version:
6.2.2
Printable View
Use the Mysql Version:
6.2.2
Hm.. Seems like it is stable. No errors here (yet)
Also, 600th post whohooooo
lol the Catalogue is a fail.
But thanks for this Slaxxer
Why did everyone hate the Catalogue XD Im going to made one tomorrow for Bubbo with all furnis.. And then I will update it here too..
Thanks for all Good Feedbacks..
-Slaxxer
A failed catalogue is better than no catalogue at all.
Good release, works too, no errors or disconnections, if only there was a decent CMS for Uber..
Slaxxer here your emulator to open it closes, what should I do?
You should google the problem and stfu.
Johnny wrong database ?
Hey, I get the same error. Luckily my PC's slow so I could print screen it :D
It says
PRINTSCREEN:Code:Please wait while the emulator loads..
MUS socket listening on localhost:7575.
Destroying environment...
Destroying database manager.
Uninitialized successfully. Closing.
http://super-hotel.net/error.png
[Descarga] inEmulator R1.2 +500 Online + Imagenes [Open Source]
Nothing more to say? And i hate copyright removals. :S!
I can tell this emulator isnt for noobs, ill see whats the problem with it and release the correct version
- Mike
Ehm check my new Downloadlink the Problem was caused by mysql connector. (Same to Beny.)
Copyright removals? wth? Everywhere are Credits and the Copyright to Meth0d Dude? Even in the First Post??
-Slaxxer
This may be the cause of the errors, ill continue investigatingCode:UberEnvironment.GetGame().GetCatalog().InitCache();
---------- Post added at 08:20 PM ---------- Previous post was at 08:16 PM ----------
Right
I ran this in Debugger mode, this is the error
Code:The thread '<No Name>' (0xed0) has exited with code 0 (0x0).
The thread 'vshost.LoadReference' (0x12f8) has exited with code 0 (0x0).
'uberEmu.vshost.exe' (Managed (v4.0.30319)): Loaded 'E:\BASHALPHA\bin\Debug\uberEmu.exe', Symbols loaded.
A first chance exception of type 'System.Exception' occurred in uberEmu.exe
The program '[5344] uberEmu.vshost.exe: Managed (v4.0.30319)' has exited with code 0 (0x0).
---------- Post added at 08:23 PM ---------- Previous post was at 08:20 PM ----------
Ahhh Fixed mine now - Ill post how to now :)
---------- Post added at 08:25 PM ---------- Previous post was at 08:23 PM ----------
Right, to fix this
Replace your Program.cs with this code
It will now display errors, if it errors. Post it here!PHP 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 = AppDomain.CurrentDomain;
currentDomain.UnhandledException += new UnhandledExceptionEventHandler(MyHandler);
try
{
UberEnvironment.Initialize();
while (true) //
{ //
Console.ReadLine(); //
}
}
catch (Exception e)
{
Console.Write(e.ToString()); //
Console.Read();
}
}
static void MyHandler(object sender, UnhandledExceptionEventArgs args)
{
Exception e = (Exception)args.ExceptionObject;
Logging.LogCriticalException(e.ToString());
}
}
}