Oh yeah sorry about that. That was due to the Config fucking up so i manually did the Sql.
You can change the Sql at MySqlClientManagement.cs and edit the details.
It should be able to at least send you to hotel view?
But the main test is, that is it picking up the connection?
Since i have getting no connection at all.
i tried to different sockets. So i just wanna see if it works for anyone else.
Yes, find SessionManager.cs and look in the Traffic region.
Nvm i'll post the code for you.
private static void HandleReceive(SocketAsyncEventArgs Args)
{
var token = Args.UserToken as AsyncUserToken;
try
{
if...
I keep debugging to find the out issue.
Sockets handle everything fine as expected. But oddly it's the generic directory not adding the events properly. Or it may be the MessageHandler not invoking it properly when it handles them.
Has anyone got a backup of Betterways 02-01-12 cracked?
I been looking for it for a while. Seem like he's link has gone down.
Nvm, i'll just send Betterway a pm for it.
I was supposed to post in-game screenshots last night. But i was too pissed of.
I'll do it tonight
Why i was pissed of?
http://screensnapr.com/v/iF5hOU.jpg
RevEmu is looking good (from the current build) i will hopefully have in-game.
Best emulator : Lemon
Best released emulator: Phoenix (Not released but still being cracked etc)
Update i used the wrong class i used the ADO.NET class, supposed to use the MySql.NET class.
public MySqlDataReader DataReader(string sQuery)
{
try
{
// Start the reader for the query.
return...
Query handling was rather shit, so i updated it to a better code. Credits to Google for some Help on the Net Sql classes.
public SqlDataReader WriteQuery(string sQuery)
{
// Open Connection and Set Query
var command = new SqlCommand(sQuery...
I listened to what Manuel said so i did a major cleanup
Root:
http://screensnapr.com/v/KN4FRy.png
Requirements:
http://screensnapr.com/v/lQQwfu.png
Revisions:
http://screensnapr.com/v/idwV46.png
Codes:
ServerMessage Re-written
using System;
using System.Collections.Generic;
using...