-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Redirected
1 bug ive found:
No one is able to edit room details? e.g. name description etc.
Works fine here..
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
neto737
Works fine here..
Works fine but it dosnt update the information.. It wont save the data.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
RELEASE63-201308011103-973670844 or ?
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
More fixs for Swift Emu, please.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
ResD
More fixs for Swift Emu, please.
Like what?
We can't offer fixes if we don't know what fixes need doing.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Can someone fix Mod action, Automatic alert (A screen that flag up someone say something that is inappropriate). And chatlogs don't work after the fix.
I mean this:
http://i44.tinypic.com/2hr0hnb.png
Thanks!
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
pls upload a work swf pack i have swf and no connection
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
streamhotel
Can someone fix Mod action, Automatic alert (A screen that flag up someone say something that is inappropriate). And chatlogs don't work after the fix.
Thanks!
Next time use printscreen button, its on your keyboard the open paint and copy it there, or even download lightshot and press print screen, cant read that at all.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
It's a screen of the video 'a day in the life of a habbo moderator'. So I don't have a screen. It must be coded in the emulator.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
You cant edit the room settings, as it wont save
Fix please :]
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Redirected
You cant edit the room settings, as it wont save
Fix please :]
How about trying to fix it yourself maybe with adding room category in navigator_flatcats, and no one takes requests here :]
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Bjork
How about trying to fix it yourself maybe with adding room category in navigator_flatcats, and no one takes requests here :]
I managed to fix it, after looking at the source of GameMessageHandler.cs.. But thankyou anyhow.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
upload a swf pack pls pls
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Redirected
I managed to fix it, after looking at the source of GameMessageHandler.cs.. But thankyou anyhow.
Do you mind sharing the fix? :D
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Does anybody have an buggless database, the official one sucks as hell here.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Upload a new db and a swf pack
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
BaasHotel
Do you mind sharing the fix? :D
As Bjork said
"How about trying to fix it yourself maybe with adding room category in navigator_flatcats, and no one takes requests here :]"
navigator_flatcats add some categories and reload the emulator :)
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
someone gives me emulator with the mute button all functional?
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
*Improvement*
Find setmax() in ChatCommandHandler.cs
and replace the entire void with
Code:
internal void setmax()
{
try
{
int MaxUsers = int.Parse(this.Params[1]);
if (TargetRoom.CheckRights(Session, true) == true)
{
if ((MaxUsers > 500) || (MaxUsers < 1))
{
this.Session.SendNotif("The number you entered is either too big or too small. Must be between 1 and 500.");
}
}
else
{
TargetRoom.UsersMax = MaxUsers;
Session.SendNotif("The maximum number of allowed users has been set to " + MaxUsers + ".");
}
}
catch { }
}
It should work, I haven't tested it as much as I would have liked to. Anyway this works almost identically to the original command but it's written better.
If you discover any problems just post here so I can solve them, I recommend you change 500 to 200 if you have a large hotel as 500 users in a single room could cause a lot of problems, I have it set to 500 for stress testing purposes.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Nobody has an fixed database?
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
hmm the Profil Look manager dont show on new swf
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
A small fix, for people who have issues with the flooding in rooms.
Go to Butterfly > Messages > GameClientMessageHandler.cs
Search for: [CTRL F]
Quote:
if (((span.Seconds < 4) && (this.FloodCount > 5)) && (this.Session.GetHabbo().Rank < 5))
Now replace that above code with:
Quote:
if (((span.Seconds < 4) && (this.FloodCount > 10)) && (this.Session.GetHabbo().Rank < 5))
Notice the only thing that was changed was the value of "(this.FloodCount > 5)) " Change into any number you think that be good, but 10 worked fine for me. It stops flood how i'd want it.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
zJordan
*Improvement*
Find setmax() in ChatCommandHandler.cs
and replace the entire void with
Code:
internal void setmax()
{
try
{
int MaxUsers = int.Parse(this.Params[1]);
if (TargetRoom.CheckRights(Session, true) == true)
{
if ((MaxUsers > 500) || (MaxUsers < 1))
{
this.Session.SendNotif("The number you entered is either too big or too small. Must be between 1 and 500.");
}
}
else
{
TargetRoom.UsersMax = MaxUsers;
Session.SendNotif("The maximum number of allowed users has been set to " + MaxUsers + ".");
}
}
catch { }
}
It should work, I haven't tested it as much as I would have liked to. Anyway this works almost identically to the original command but it's written better.
If you discover any problems just post here so I can solve them, I recommend you change 500 to 200 if you have a large hotel as 500 users in a single room could cause a lot of problems, I have it set to 500 for stress testing purposes.
If I'm not mistaken the code should be:
Code:
internal void setmax()
{
Room TargetRoom = Session.GetHabbo().CurrentRoom;
TargetRoom = Session.GetHabbo().CurrentRoom;
try
{
int MaxUsers = int.Parse(this.Params[1]);
if (TargetRoom.CheckRights(Session, true) == true)
{
if ((MaxUsers > 500) || (MaxUsers < 1))
{
this.Session.SendNotif("The number you entered is either too big or too small. Must be between 1 and 500.");
}
}
else
{
TargetRoom.UsersMax = MaxUsers;
Session.SendNotif("The maximum number of allowed users has been set to " + MaxUsers + ".");
}
}
catch { }
}
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Someone has official swiftemu download link?