Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Okay guys!
the links from JabboHotel work!
mod tools is going, kicking in rooms and banning in rooms works too!
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Quote:
Originally Posted by
-styla-boy-
roomkicking and roomkicking+banning doesnt work!
there are come many errormessages..
and mod tool doesnt work!!!
Thanks that you told us that, we forget that, now Ive Updated the links, there is a mirror 2., and the mediafire link is updated too.
I Fixed now the Mod Tool, ban, kick, roomalert and so on..
Martin is at the moment afk ;P
Download again the source, now it works!
Enjoy it!
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Nice JabboHotel ;) can you give me your Msn adress please?
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Some rooms hc Do not Work
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Add it your codes are here in ragezone
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Why do i get this error?
Code:
Event occurred : 22:10:46:312
System.NullReferenceException: Objektreferencen er ikke indstillet til en forekomst af et objekt.
ved Holo.Managers.rankManager.fuseRights(Byte rankID, Int32 userID) i C:\Users\msny2511\Desktop\C#\r10\Source\Managers\rankManager.cs:linje 91
ved Holo.Virtual.Users.virtualUser.processPacket(String currentPacket) i C:\Users\msny2511\Desktop\C#\r10\Source\Virtual\Users\virtualUser.cs:linje 301
ved Holo.Source.Socket_servers.ClientSocket.SocketExtension.DataStreamReceived(IAsyncResult pRes) i C:\Users\msny2511\Desktop\C#\r10\Source\Socket servers\Game Socketsystem\SocketExtension.cs:linje 96
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Quote:
Originally Posted by
kasperbjerby
Why do i get this error?
Code:
Event occurred : 22:10:46:312
System.NullReferenceException: Objektreferencen er ikke indstillet til en forekomst af et objekt.
ved Holo.Managers.rankManager.fuseRights(Byte rankID, Int32 userID) i C:\Users\msny2511\Desktop\C#\r10\Source\Managers\rankManager.cs:linje 91
ved Holo.Virtual.Users.virtualUser.processPacket(String currentPacket) i C:\Users\msny2511\Desktop\C#\r10\Source\Virtual\Users\virtualUser.cs:linje 301
ved Holo.Source.Socket_servers.ClientSocket.SocketExtension.DataStreamReceived(IAsyncResult pRes) i C:\Users\msny2511\Desktop\C#\r10\Source\Socket servers\Game Socketsystem\SocketExtension.cs:linje 96
Ah this is normal, ive said that above, look.
It comes when somebody leave the Hotel^^
Normaly there stand somebody disposed^^
---------- Post added at 10:23 PM ---------- Previous post was at 10:21 PM ----------
Quote:
Originally Posted by
kasperbjerby
Do pet works?
Ive said Awa500 that he will put the pets code in the optimize this!
I hope it will works ;)
Quote:
Originally Posted by
djbam
Some rooms hc Do not Work
Yeah we have to fix ^^
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
As Chambers Hc When grooming?
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Oh it dose kick me and send that error? When i try to join the hotel
---------- Post added at 10:46 PM ---------- Previous post was at 10:32 PM ----------
Why dose it kick me when i try to join the hotel?
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Yep, when it kicks you, you have to look in your config.
The Server doesnt kick anyone, we fixed the ticket_sso & the shizzle wizzle :D
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Quote:
Originally Posted by
kasperbjerby
Why do i get this error?
Code:
Event occurred : 22:10:46:312
System.NullReferenceException: Objektreferencen er ikke indstillet til en forekomst af et objekt.
ved Holo.Managers.rankManager.fuseRights(Byte rankID, Int32 userID) i C:\Users\msny2511\Desktop\C#\r10\Source\Managers\rankManager.cs:linje 91
ved Holo.Virtual.Users.virtualUser.processPacket(String currentPacket) i C:\Users\msny2511\Desktop\C#\r10\Source\Virtual\Users\virtualUser.cs:linje 301
ved Holo.Source.Socket_servers.ClientSocket.SocketExtension.DataStreamReceived(IAsyncResult pRes) i C:\Users\msny2511\Desktop\C#\r10\Source\Socket servers\Game Socketsystem\SocketExtension.cs:linje 96
This is not normal, lol. This is a D/C errors that i have fix for you:
Code:
public static string fuseRights(byte Rank, List<string> Fuselist)
{
string[] fuseRights = ((userRank)userRanks[Rank]).fuseRights;
StringBuilder strBuilder = new StringBuilder();
for (int i = 0; i < fuseRights.Length; i++)
strBuilder.Append(fuseRights[i] + Convert.ToChar(2));
foreach (string fuseright in Fuselist)
strBuilder.Append(fuseright + Convert.ToChar(2));
return strBuilder.ToString();
}
Replaces rankManager.cs with this code in your FuseRights Table
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Hey Jabbo and Martinmine, this server is vulnerable to mus injections, one scripter is scripting my Holo every day . Is there any possibility to stop this attacks?
Thanks.
Re: Optimize This Source (New Socket+) - R10 Build 2 ~ 100% Tested - 500 Users Online
Quote:
Originally Posted by
qurke
This is not normal, lol. This is a D/C errors that i have fix for you:
Code:
public static string fuseRights(byte Rank, List<string> Fuselist)
{
string[] fuseRights = ((userRank)userRanks[Rank]).fuseRights;
StringBuilder strBuilder = new StringBuilder();
for (int i = 0; i < fuseRights.Length; i++)
strBuilder.Append(fuseRights[i] + Convert.ToChar(2));
foreach (string fuseright in Fuselist)
strBuilder.Append(fuseright + Convert.ToChar(2));
return strBuilder.ToString();
}
Replaces rankManager.cs with this code in your FuseRights Table
It dose not work? I still get the error... And get kickede
---------- Post added 01-20-2010 at 12:11 AM ---------- Previous post was 01-19-2010 at 11:17 PM ----------
Oh now i know whats wrong.... I keep getting the error "Invalid session ticket" and then i get kickede? Have do i fix that?