-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
If you use RevCMS,
then this below should fix your profiles.
Go into your me.php page (or any page for that matter)
Then add this code and refresh the page:
Code:
<?php
$query = mysql_query("SELECT id, account_created, last_online FROM users");
while($row = mysql_fetch_assoc($query)){
mysql_query("INSERT INTO user_info(user_id, bans, cautions, reg_timestamp, login_timestamp, cfhs, cfhs_abusive, id) VALUES (" . $row["id"] . ", 0, 0, " . $row["account_created"] . ", " . $row["last_online"] . ", 0, 0, 0)") or die (mysql_error());
}
?>
After that remove the code and then go into app and in class.users.php find:
Code:
$engine->query("INSERT INTO users (username, password, mail, motto, credits, activity_points, rank, look, gender, seckey, ip_last, ip_reg, account_created, last_online, auth_ticket) VALUES('" . $username . "', '" . $password . "', '" . $email . "', '" . $motto . "', '" . $credits . "', '" . $pixels . "', '" . $rank . "', '" . $figure . "', '" . $gender . "', '" . $seckey . "', '" . $_SERVER['REMOTE_ADDR'] . "', '" . $_SERVER['REMOTE_ADDR'] . "', '" . time() . "', '" . time() . "', '" . $sessionKey . "')");
And add below it:
Code:
$engine->query("INSERT INTO user_info (reg_timestamp, login_timestamp) VALUES('" . time() . "', '" . time() . "')");
This should, Insert the query into user_info upon the user registering,
so profiles can work. This HAS been tested, and works great for me.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
a bug
can not remove the lock to rooms
fix pls
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
XiFy
If you use IlluminaCMS by Jonty,
then this below should fix your profiles.
In client.php find:
Code:
$db->real_query("UPDATE users SET ip_last = '" . $_SERVER["REMOTE_ADDR"] . "', auth_ticket = '" . $sso . "' WHERE id = '" . USER_ID . "'");
And add below it:
Code:
$db->real_query("INSERT INTO user_info(user_id, bans, cautions, reg_timestamp, login_timestamp, cfhs, cfhs_abusive) VALUES ('" . $row["id"] . "', '0', '0', '1234', '1234', '0', '0')");
This should, Insert the query into user_info upon the client loading,
so profiles can work. This hasn't been tested, so post if it worked or not.
A new row shouldn't be inserted every time the user loads the client, it should be inserted upon registration.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
The problem when you open the inventory with +2.980 items, drop client.. is here:
InventoryComponent.cs at: internal ServerMessage SerializeFloorItemInventory()
PHP Code:
message.AppendInt32((int)(this.floorItems.Count + this.discs.Count + this.wallItems.Count));
Here he counts items..
and here:
PHP Code:
return message;
Send all items to Inventory..
In my DEV DEBUG, count items show: 3.130 Items
But in "return message;"
Not shows all 3.130 items.. he cuts or cancels...
Let's see what we can with it, to make a solution.
Sorry for my english, e.e
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
ResD
Hey friend can post the fix of the profiles not loading, please the last
Basic fix for any cms for profiles .-.
In your client.php add this before your "?>" or below the query that updates the auth_ticket
Code:
//$id = PUT YOUR ID VARIABLE HERE AND DELETE LINE BELOW AND DELETE THE "//". EX BELOW
$id = $row['id'];
$total = mysql_num_rows(mysql_query("SELECT user_id FROM user_info WHERE user_id='".$id."'"));
if ($total==0) {
mysql_query ("INSERT INTO user_info (user_id, bans, cautions, reg_timestamp, login_timestamp, FHC, cfhs_abusive) VALUES ('". $ row ["id"]. "', '0 ', '0', '1234 ', '1234', '0 ', '0') ");
/* This query above is not mine */
}
Sorry for my bad english, i'm brazilian '-'
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Marlon Colhado
The problem when you open the inventory with +2.980 items, drop client.. is here:
InventoryComponent.cs at:
internal ServerMessage SerializeFloorItemInventory()
PHP Code:
message.AppendInt32((int)(this.floorItems.Count + this.discs.Count + this.wallItems.Count));
Here he counts items..
and here:
PHP Code:
return message;
Send all items to Inventory..
In my DEV DEBUG, count items show: 3.130 Items
But in "return message;"
Not shows all 3.130 items.. he cuts or cancels...
Let's see what we can with it, to make a solution.
Sorry for my english, e.e
The problem isn't the emulator, it's the SWF. What you need to do is edit the SWF with RABCDAsm and increase the max allowed message length.
The problem that you're experience is that the message sent from the server to the client is too long (All that furniture).
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
tdid
Oeh smartass found an solution :love:
I've said how to fix it many times, no one seems to take any notice. :D
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Leon
I've said how to fix it many times, no one seems to take any notice. :D
At least you can tell which part is the amount in swf?
Sorry for my english,
By knowing, I can make a tutorial for the community.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
I loaded and profiles on user_info table are the data. I think the mistake is by some groups because to give in the profile I get an error in the emulator
http://gyazo.com/a8bd3a2c36a12d76ba55b7357ba63d91.png
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Marlon Colhado
At least you can tell which part is the amount in swf?
Sorry for my english,
By knowing, I can make a tutorial for the community.
thank you very much for the tutorial
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Bots are duplicated after buying.
Here is my fix:
Quote:
Go to ./HabboHotel/Catalogs/Catalog.cs and delete this row:
Code:
bot.BotId = (uint)dbClient.insertQuery();
I don't know if there was a fix.
Sorry for my bad English. I'm Dutch.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Hello
Anyone would do me the favor to upload the emulator with fixs? (including the backdoor fixs)
And the updated database.
Sorry for my English, I speak Spanish. Thanks you :)
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Hey Guys..
Some one got a fix for the Gifts?
When i try to buy a gift i cant press the "Send Gift" button or what ever the name of the button in the right bottom corner of the Gift Window in english is.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Aduction
Hello
Anyone would do me the favor to upload the emulator with fixs? (including the backdoor fixs)
And the updated database.
Sorry for my English, I speak Spanish. Thanks you :)
Yeah i want to i can't find a good swift emulator with fixes from a date and with a good db by it --.
I hope that someone it shares!
I dont have follow the develop of swift so i thank you if you want to share ;)
-Spotify
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Akademus
Hey Guys..
Some one got a fix for the Gifts?
When i try to buy a gift i cant press the "Send Gift" button or what ever the name of the button in the right bottom corner of the Gift Window in english is.
Fix for Gifts, By me:
http://forum.ragezone.com/f353/swift...ml#post7730645
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Marlon Colhado
It doesn't work
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
albertwitwerts
It doesn't work
What did not work for you? for me works correctly,
Proof: Kazeta Hotel - Gifts Fixed [DEMO] - YouTube
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Marlon Colhado
Why you no fancy gift opening animation?
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Leon
Why you no fancy gift opening animation?
Because this is not a fix, this is one adaptation.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Since people keep asking me - I've fixed the problem for you.
http://i.imgur.com/kwcMMmG.png
Download: Habbo.swf
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
albertwitwerts
Bots are duplicated after buying.
Here is my fix:
I don't know if there was a fix.
Sorry for my bad English. I'm Dutch.
A more appropriate fix is to change the query from 'dbClient.runFastQuery' to 'dbClient.setQuery', and then you can still keep 'bot.BotId = (uint)dbClient.insertQuery();' as you're giving the bot its ID and running the query and taking the ID from the inserted query.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
When you open the emulator and try to enter I get:
Unrecognized MUS packet: getonline//getonline
Sorry for my english :s
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Aduction
When you open the emulator and try to enter I get:
Unrecognized MUS packet: getonline//getonline
Sorry for my english :s
The CMS is sending a MUS request for the command getonline, and Swift doesn't have getonline, it's nothing major.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Leon
Could you explain how to change the amount in the swf for previous or future Habbo.swf ? :)
Thank you!
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
1 bug ive found:
No one is able to edit room details? e.g. name description etc.
-
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?
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
if (TargetRoom.CheckRights(Session, true) == true){
Code:
if (TargetRoom.CheckRights(Session, true)){
The "== true" isn't needed i think. CheckRights is already a boolean
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Hi I have made a small modification to the command to read the maximum users can define setMax in config.ini
add in ChatCommandHandler.cs:
Code:
private int SetMaxLimits;
replace all void with:
Code:
internal void setmax()
{
Room TargetRoom = Session.GetHabbo().CurrentRoom;
TargetRoom = Session.GetHabbo().CurrentRoom;
try
{
int MaxUsers = int.Parse(this.Params[1]);
this.SetMaxLimits = int.Parse(ButterflyEnvironment.GetConfig().data["setmax.limit"]);
if (TargetRoom.CheckRights(Session, true))
{
if ((MaxUsers > SetMaxLimits) || (MaxUsers < 1))
{
this.Session.SendNotif("The number you entered is either too big or too small. Must be between 1 and " + SetMaxLimits + ".");
}
}
else
{
TargetRoom.UsersMax = MaxUsers;
Session.SendNotif("The maximum number of allowed users has been set to " + MaxUsers + ".");
}
}
catch { }
}
add in config.ini:
Code:
## Maximum Users for setmax command
setmax.limit=300
sorry for my English, I'm Spanish.
I have not tried it, I hope to work properly.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Here is a quick fix for declining all friend requests:
Find the following in GameClientMessageHandler.cs:
PHP Code:
internal void DeclineRequest()
Replace the whole void with:
PHP Code:
internal void DeclineRequest()
{
if (Session.GetHabbo().GetMessenger() == null)
return;
bool declineAll = Request.PopWiredBoolean();
if (declineAll == true)
Session.GetHabbo().GetMessenger().HandleAllRequests();
else
{
uint RequestId = Request.PopWiredUInt();
Session.GetHabbo().GetMessenger().HandleRequest(RequestId);
}
}
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Another bug ive found:
When accepting someone as a friend if they are offline, it dosn't save. Meaning if you reload your still have a friends request from them.
-
Somebody have the code for buy 6, get 1 extra
Verstuurd vanaf mijn LG-E610 met Tapatalk 4
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Twan
Somebody have the code for buy 6, get 1 extra
Verstuurd vanaf mijn LG-E610 met Tapatalk 4
It works perfectly fine in Rev5... So either you modified the code for it to not work, or you haven't set the item to '1' instead of '0' in the DB.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Redirected
Another bug ive found:
When accepting someone as a friend if they are offline, it dosn't save. Meaning if you reload your still have a friends request from them.
I don't seem to have this issue, do you have any logs or have you modified the code?
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Sledmore
I don't seem to have this issue, do you have any logs or have you modified the code?
Nah I havnt edited codes and no logs. But I believe I have fixed this problem without even relising I did .. :}
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
can you ensure that the owner and the people not be transferred accreditated
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
FatalLulz
It works perfectly fine in Rev5... So either you modified the code for it to not work, or you haven't set the item to '1' instead of '0' in the DB.
I did, i use the database from Rev 5, maybe u can help me..?
------
Nobody coded promoted rooms yet?
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
When entering the client, the emu receives no connections.. Does somebody have a fix for this?
-
Which CMS are u using
Verstuurd vanaf mijn LG-E610 met Tapatalk 4
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
HabboPHP, but other swift emu's are working well but the latest Revision 5 isn't working.. I downloaded the SWF's from this thread and the latest habbo.swf from habbo.uk.com ..
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Someone should fix
- Promoted rooms... (Navigator and the other one that opens the catalog)
- Profiles... You can only see yourself, and not other peoples.
Thanks to whoever may attempt this xD....
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Ben Crivelli
Someone should fix
- Profiles... You can only see yourself, and not other peoples.
Works fine.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Promoted rooms still not.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Matata
Works fine.
Erm, yeah it loads yourself fine, cannot load other peoples though...
Maybe its a external_var problem..
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
yes event's dont work on client and steam is not loading
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
I have found new exploit, we can empty ALL DATABASE based on bcstorm..
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Herofire
yes event's dont work on client and steam is not loading
where is it?, i'll try to fix it.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
BurakDev
I have found new exploit, we can empty ALL DATABASE based on bcstorm..
Then tell the exploit? :P
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
I suppose it's change name.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
How do i fix relationships it comes up with this
here
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
WethreeKings
How do i fix relationships it comes up with this
here
1. Texts
2. Vars
3. You didn't implement the code correctly....
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
I've download Revision 5 - Alpha 5 from this thread, but when I give somebody diamonds they amount updates after he reloads the hotel.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
My, hotel was just Hacked. I think that was a exploit in groups descriptions... :grr:
between the important tables, the guy deleted catalog_pages (what kind of people does that?)
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Anyone can fix that all exploits ?????
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
You can have a 'explodit' only when your server is receiving a string. If you want to make sure you are safe, you should take a look at all incoming strings. To do that, just get into your visual studio interface and search for all definitions of 'PopFixedString()' I guess(not in my pc right now to confirm). Every time you receive such data, you must handle it in your MySQL querys as a parameter. If not, you can be injected. I checked for all of them, and as far as I've seen, groups methods looks safe. But anyway, you should double check it
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
pls make a update fix all exploi'ts i pay 50 euro's
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
AKllX
You can have a 'explodit' only when your server is receiving a string. If you want to make sure you are safe, you should take a look at all incoming strings. To do that, just get into your visual studio interface and search for all definitions of 'PopFixedString()' I guess(not in my pc right now to confirm). Every time you receive such data, you must handle it in your MySQL querys as a parameter. If not, you can be injected. I checked for all of them, and as far as I've seen, groups methods looks safe. But anyway, you should double check it
I make the fix for SQL Injection, using PopFixedString(), very easy, I put on the return of the static string, a filter.
Very easy btw. I hope it handle. My hotel got attacked last night, and just now I do it... I think people (and me) just make action AFTER the shit happen! haha
Cheers!
Droppy
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Herofire
pls make a update fix all exploi'ts i pay 50 euro's
If you read through all the thread theres 100's of fixes including exploit ones, i fixed 2, owner: search in navi & marketplace one.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Why can group members kick poeple
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
is there someone Going to release events tab and HC fix :)
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Wbeu
Going to release events tab and HC fix tonight :)
Finally inwas waiting for this :)
Tapatalk.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
ImNotSatan
Finally inwas waiting for this :)
Tapatalk.
I actually wanna say IF someone wanna fix it... ><
Didn't read my comment u.u
-
[SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Oh lol XD fail.... The event tab u can remore tough.
Just rip someone"s if u cant do that
BTW the topic maker mentioned to not ask for help here lol
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
BaasHotel
I found some bugs too:
1. When you use 'wired user says the correct word', the correct word will appear in the room instead of being whispered.
2. If you buy too many wall/flooritems and then place a wall/flooritem in your room, you will get disconnected.
3. BOTs randomly duplicate themselves after you place one in a room, pick it up again and relog.
4. You will randomly be not able to walk on a certain tile again after somebody has walked over it.
I would be very happy to see this fixed somehow. :D
I need a fix for the 1.
Please help us.
thanks
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
knaller1
I need a fix for the 1.
Please help us.
thanks
Me2 i hope this can be fixed :o
Tapatalk.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Hello people wanted to ask if someone for me the bugs fixed source
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
This thread still up? lol
ont: I like most of the fixes, as I have said, but this thread must be more updated, to keep alive...
Btw, Swift is pretty outdated
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Droppy
This thread still up? lol
ont: I like most of the fixes, as I have said, but this thread must be more updated, to keep alive...
Btw, Swift is pretty outdated
Then peeps should update it :p
Tapatalk.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
ImNotSatan
Then peeps should update it :p
Tapatalk.
Well, yeah, agreed. yum, But I'm still thinking it is outdated AND unstable.. There's such a better emus, such as mango, if you get some time coding it, ofc, since its a framework...
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Droppy
Well, yeah, agreed. yum, But I'm still thinking it is outdated AND unstable.. There's such a better emus, such as mango, if you get some time coding it, ofc, since its a framework...
Offtopic: do you know anny emu with the same emu as swift wich is better?
Ontopic; i hope more coders will work on swift :/
Tapatalk.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Effect inventory fix 100%
find:
Code:
internal void AddEffect(int EffectId, int Duration)
replace the void with:
Code:
internal void AddEffect(int EffectId, int Duration)
{
using (IQueryAdapter dbClient =ButterflyEnvironment.GetDatabaseManager().getQueryreactor())
{
dbClient.runFastQuery("INSERT INTO user_effects (user_id,effect_id,total_duration,is_activated,activated_stamp) VALUES (" + UserId + "," + EffectId + "," + Duration + ",'0',0)");
}
EffectCount++;
Effects.Add(new AvatarEffect(EffectId, Duration, false, 0));
GetClient().GetMessageHandler().GetResponse().Init(Outgoing.AddEffectToInventary);
GetClient().GetMessageHandler().GetResponse().AppendInt32(EffectId);
GetClient().GetMessageHandler().GetResponse().AppendInt32(Duration);
}
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Jerking
Effect inventory fix 100%
find:
Code:
internal void AddEffect(int EffectId, int Duration)
replace the void with:
Code:
internal void AddEffect(int EffectId, int Duration)
{
using (IQueryAdapter dbClient =ButterflyEnvironment.GetDatabaseManager().getQueryreactor())
{
dbClient.runFastQuery("INSERT INTO user_effects (user_id,effect_id,total_duration,is_activated,activated_stamp) VALUES (" + UserId + "," + EffectId + "," + Duration + ",'0',0)");
}
EffectCount++;
Effects.Add(new AvatarEffect(EffectId, Duration, false, 0));
GetClient().GetMessageHandler().GetResponse().Init(Outgoing.AddEffectToInventary);
GetClient().GetMessageHandler().GetResponse().AppendInt32(EffectId);
GetClient().GetMessageHandler().GetResponse().AppendInt32(Duration);
}
Offt: didnt you make an invisible fix???
Ont: saw that before nice tough =)
Btw does anny1 got a :ban fix? Or superban
Tapatalk.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
ImNotSatan
Offt: didnt you make an invisible fix???
Ont: saw that before nice tough =)
Btw does anny1 got a :ban fix? Or superban
Tapatalk.
There was a fix but that wasn't 100% this one is 100% like I said in my thread and comment :).
Oh, the spectatormode I'm gonna make a fixes thread soon :).
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Can somebody upload this with all fixes?
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
I don't recommend use this version anymore... '-'
@Edit
Some Moderator can close this thread please?
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
rafa95123
I don't recommend use this version anymore... '-'
@
Edit
Some Moderator can close this thread please?
What to use then ;)?