Register for your free account! | Forgot your password?

You last visited: Today at 06:40

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



SSN's filter

Discussion on SSN's filter within the SRO PServer Guides & Releases forum part of the SRO Private Server category.

Reply
 
Old   #1
 
B1Q's Avatar
 
elite*gold: 350
Join Date: Aug 2015
Posts: 2,008
Received Thanks: 1,193
SSN's filter

u can have this

naming kinda bad
code messy

has bugs but i don't remember
pls don't hate me for stealing packets

i don't have database pls don't ask for it

attachments
B1Q is offline  
Thanks
4 Users
Old 03/05/2019, 17:49   #2
 
m1xawy's Avatar
 
elite*gold: 0
Join Date: Aug 2018
Posts: 278
Received Thanks: 443
welcome back : )
m1xawy is offline  
Old 03/05/2019, 17:50   #3
 
B1Q's Avatar
 
elite*gold: 350
Join Date: Aug 2015
Posts: 2,008
Received Thanks: 1,193
Quote:
Originally Posted by Dracula Untold View Post
) it hurt's u ?
why are you gay?
must be glad you didn't pay for it

Quote:
Originally Posted by m1xawy View Post
welcome back : )
i'm just here for 1 day i will be leaving soon
thanks though
B1Q is offline  
Old 03/05/2019, 18:12   #4

 
Worshiper's Avatar
 
elite*gold: 136
Join Date: May 2017
Posts: 1,151
Received Thanks: 249
Nice B1Q
Worshiper is offline  
Old 03/05/2019, 19:10   #5

 
XxGhostSpiriTxX's Avatar
 
elite*gold: 53
Join Date: Jul 2012
Posts: 542
Received Thanks: 191
Good Bro Thanks <3
XxGhostSpiriTxX is offline  
Old 03/05/2019, 20:55   #6
 
elite*gold: 0
Join Date: Apr 2016
Posts: 289
Received Thanks: 67
Good job, thank's you!!! but what special more than Cry Filter :v
hoangphan7 is offline  
Old 03/05/2019, 23:22   #7
 
elite*gold: 0
Join Date: Aug 2010
Posts: 689
Received Thanks: 375
Quote:
Originally Posted by B1Q View Post
why are you gay?
must be glad you didn't pay for it



i'm just here for 1 day i will be leaving soon
thanks though
Error 2 Source file 'Utility\MemoryWise.cs' could not be found
bende16 is offline  
Old 03/05/2019, 23:25   #8
 
elite*gold: 0
Join Date: Jan 2019
Posts: 34
Received Thanks: 12
Welcome and thanks for sharing.
Phobos_ is offline  
Old 03/06/2019, 05:32   #9
 
B1Q's Avatar
 
elite*gold: 350
Join Date: Aug 2015
Posts: 2,008
Received Thanks: 1,193
Quote:
Originally Posted by hoangphan7 View Post
Good job, thank's you!!! but what special more than Cry Filter :v
This is the MOST advanced filter for ecsro files

Quote:
Originally Posted by bende16 View Post
Error 2 Source file 'Utility\MemoryWise.cs' could not be found
Must have deleted it
Just remove it from csproj and dont use this with vsro
B1Q is offline  
Thanks
1 User
Old 03/06/2019, 20:48   #10


 
Dracula Untold's Avatar
 
elite*gold: 0
Join Date: Feb 2014
Posts: 1,866
Received Thanks: 517
i am glad u release it ... u know i was talking to you long time ago .
a dream come true for me ... because i work on ecsro for a long time
Dracula Untold is offline  
Old 03/06/2019, 21:26   #11

 
SubZero**'s Avatar
 
elite*gold: 270
Join Date: Apr 2017
Posts: 1,032
Received Thanks: 525
Thank you for share it
SubZero** is offline  
Old 03/16/2019, 15:22   #12
 
blackout069's Avatar
 
elite*gold: 1
Join Date: May 2008
Posts: 493
Received Thanks: 184
Quote:
Originally Posted by B1Q View Post
This is the MOST advanced filter for ecsro files



Must have deleted it
Just remove it from csproj and dont use this with vsro
Its not, i completely abused your sever while playing on it. Dupe bug not fixed and many other **** as well XD
blackout069 is offline  
Old 03/16/2019, 16:40   #13
 
B1Q's Avatar
 
elite*gold: 350
Join Date: Aug 2015
Posts: 2,008
Received Thanks: 1,193
Quote:
Originally Posted by blackout069 View Post
Its not, i completely abused your sever while playing on it. Dupe bug not fixed and many other shit as well XD
i actually explained why i didn't bother fixing any original bugs
but in case you missed it,
i don't remember saying ALL BUGS FIXED and in case it went over your head
the topic is a complete joke
Quote:
if you want to use bugs in our server please don't
i said the MOST ADVANCED (which is true) as a joke
it's not the MOST SECURE but yeah these exploits you were using in old SSN are fixed in the new server that i dropped

Code:
public class AntiExploit
    {

        [PacketHandler(0x30B8, Direction.Server)]
        public heheType HandleStall(Packet pck, ProxyClient client)
        {
            if (pck.Remain <= 0) return heheType.BB;
            uint playerID = pck.ReadUInt();
            if (playerID == client.character.UniqueID)
            {
                string stallName = pck.ReadAscii();
                client.character.Stall.Name = stallName;
                client.SendNotice(stallName);
            }
            return heheType.NO;
        }

        [PacketHandler(0xB0B1, Direction.Server)]
        public heheType HandleStallOpen(Packet pck, ProxyClient client)
        {
            bool flag = pck.ReadBool();
            client.character.Stall.IsOpen = flag;
            return heheType.NO;
        }

        [PacketHandler(0xB0BA, Direction.Server)]
        public heheType HandleStallAction(Packet pck, ProxyClient client)
        {
            byte flag = pck.ReadByte();
            byte type = pck.ReadByte();
            if (flag == 1 && type == 6)
                client.character.Stall.Description = pck.ReadAscii();
            if (flag == 1 && type == 5) // stall network 
            {
                byte flag1 = pck.ReadByte(); // is stall network prompt? 1 : 0 
                byte flag2 = pck.ReadByte(); // is stall network? 1 : 0
                if (flag1 == 1 && flag2 == 1)
                    client.character.Stall.StallNetwork = true;
                if (flag1 == 0)
                    client.character.Stall.IsModifying = true;
            }
            return heheType.NO;
        }

        [PacketHandler(0x70B5, Direction.Client)]
        public heheType HandleStallInjection(Packet pck, ProxyClient client)
        {
            //byte flag = pck.ReadByte();
            if (client.character.Stall.IsOpen)
            {
                client.SendNotice("HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH");
                return heheType.BB;
            }
            return heheType.NO;
        }

        [PacketHandler(0xB0B2, Direction.Server)]
        public heheType HandleStallClose(Packet pck, ProxyClient client)
        {
            byte flag = pck.ReadByte();
            if (flag == 1 && client.character.Stall.IsOpen)
                client.character.Stall.IsOpen = false;
            else
                return heheType.BB;
            return heheType.NO;
        }

    }
if u plan on using this for your server
i can't guarantee how safe it is
do your own fixes and double check code please
B1Q is offline  
Thanks
1 User
Old 03/16/2019, 17:03   #14
 
elite*gold: 0
Join Date: Jan 2009
Posts: 463
Received Thanks: 220
You said it's advanced but does it come with backdoor feature?
rares495 is offline  
Old 03/16/2019, 17:08   #15
 
B1Q's Avatar
 
elite*gold: 350
Join Date: Aug 2015
Posts: 2,008
Received Thanks: 1,193
Quote:
Originally Posted by rares495 View Post
You said it's advanced but does it come with backdoor feature?
yes its there in the C# source code from op
B1Q is offline  
Reply


Similar Threads Similar Threads
[Selling] Fornite Account With More Than 36 Skins, Full SSN 4, Full SSN 3, Lots of Rare Skins
06/29/2018 - Fortnite Trading - 1 Replies
Im selling my fortnite account because I am quiting the game, If anyone is interested please contact me on Discord, my ID is Abasery#9306. . Account has about 37 Skins, lots of rare ones. Tons Of rare and expensive Pickaxes, Items all are worth aroung 25K Vbucks. Serious Buyers Only Please. Imagur Album With All The Skins and Cosmetics: https://imgur.com/a/pAHgJ8H Discord: Abasery#9306
WPE Pro - Dupe Filter + Tutorial + Klassen Filter Download (3.3.3a & 3.3.5)
03/27/2012 - WoW PServer Exploits, Hacks & Tools - 165 Replies
WPE Pro - Dupe Filter + Tutorial + Klassen Filter Download (3.3.3a & 3.3.5) Hier stelle ich euch mal eine tolle Filter Sammlung für WPE rein. Warum ich das reinstelle? Weil ich das im Inet gefunden habe und vielen die Arbeit ersparen will was ich in der letzten Woche hier hatte und immer noch zu keinem Ziel gekommen bin. Das Packet ist Viren frei, habe es selber gepackt, ihr könnt gern nachprüfen weil ich weis nicht wie das funktioniert. Download: WPE Pro - Dupe Filter + Tutorial +...
Pet Filter or SRO-DB filter
06/02/2010 - SRO Private Server - 5 Replies
Hi, In SRO-DB, there is no filter to grab elements only. And with a grab pet, it is full in 5 minutes and it wont grab gold anymore... So is there a way to grab only elements ? Thank you.



All times are GMT +1. The time now is 06:41.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.