Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

Page 5 of 16 FirstFirst 1234567891011121315 ... LastLast
Results 61 to 75 of 231
  1. #61
    I don't even know azaidi is offline
    MemberRank
    Apr 2010 Join Date
    the NetherlandsLocation
    2,065Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    If you want me to help you guys I'd be glad to help, I already did this sometime ago and it was pretty funny to see Aaron's secure source getting remade

    First File (Originally NET/Class321.cs)

    PHP Code:
    using System;
    using System.Net.Sockets;
    using Phoenix.Core;
    using Phoenix.Util;
    namespace 
    Phoenix.Net
    {
        
    internal sealed class AntiDDoS
        
    {
            private static 
    string[] Connections;
            private static 
    string LastConnection;

            
    internal static void Load(int int_0)
            {
                
    AntiDDoS.Connections = new string[int_0];
            }

            
    internal static bool Check(Socket Connection)
            {
                
    string IP Connection.RemoteEndPoint.ToString().Split(new char[]
                {
                    
    ':'
                
    })[0];
                if (
    IP == AntiDDoS.LastConnection)
                {
                    return 
    false;
                }
                else
                {
                    if (
    AntiDDoS.CheckConnections(IP) > 10 && IP != "127.0.0.1" && !Class13.AntiDDoSOff)
                    {
                        
    Console.ForegroundColor ConsoleColor.Blue;
                        
    Console.WriteLine(IP " was banned by Anti-DDoS system.");
                        
    Console.ForegroundColor ConsoleColor.White;
                        
    Logging.LogDDoS(IP " - " DateTime.Now.ToString());
                        
    AntiDDoS.LastConnection IP;
                        return 
    false;
                    }
                    else
                    {
                        
    int EmptySpot AntiDDoS.GetEmptySpot();

                        if (
    EmptySpot 0)
                        {
                            return 
    false;
                        }
                        else
                        {
                            
    AntiDDoS.Connections[EmptySpot] = IP;
                            return 
    true;
                        }
                    }
                }
            }
            private static 
    int CheckConnections(string IP)
            {
                
    int num 0;
                for (
    int i 0AntiDDoS.Connections.Lengthi++)
                {
                    if (
    AntiDDoS.Connections[i] == IP)
                    {
                        
    num++;
                    }
                }
                return 
    num;
            }
            
    internal static void RemoveIP(string IP)
            {
                for (
    int i 0AntiDDoS.Connections.Lengthi++)
                {
                    if (
    AntiDDoS.Connections[i] == IP)
                    {
                        
    AntiDDoS.Connections[i] = null;
                        return;
                    }
                }
            }
            private static 
    int GetEmptySpot()
            {
                for (
    int i 0AntiDDoS.Connections.Lengthi++)
                {
                    if (
    AntiDDoS.Connections[i] == null)
                    {
                        return 
    i;
                    }
                }

                return -
    1;
            }
        }

    I'm working on renaming as much as possible, if you have any specific file for me to rename tell me
    Last edited by azaidi; 10-07-13 at 08:56 PM.

  2. #62
    Account Upgraded | Title Enabled! James MGN is offline
    MemberRank
    Nov 2012 Join Date
    CanadaLocation
    333Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    The Emu doesn't seem to be the most stable, I was using another edit with no issues, and this one seems to crash ever hr

  3. #63
    Banned bugme is offline
    BannedRank
    Feb 2007 Join Date
    1,380Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    I have the same problem here - It won't even boot up because it stops at roles...

    Verstuurd van mijn GT-I9070 met Tapatalk

  4. #64
    Valued Member TheFlamingo is offline
    MemberRank
    May 2013 Join Date
    123Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    Quote Originally Posted by Notice View Post
    I have the same problem here - It won't even boot up because it stops at roles...

    Verstuurd van mijn GT-I9070 met Tapatalk
    did you even run the fix.sql?

  5. #65
    Banned bugme is offline
    BannedRank
    Feb 2007 Join Date
    1,380Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    Eh no, i didn't thank you for mentioning me. I will do that tommorow

    Verstuurd van mijn GT-I9070 met Tapatalk

  6. #66
    I don't even know azaidi is offline
    MemberRank
    Apr 2010 Join Date
    the NetherlandsLocation
    2,065Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    To not need fix.sql find "cmd_dance_name"

    Replace
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_dance_name"), 71);
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_rave_name"), 72);
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_roll_name"), 73);
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_control_name"), 74);
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_makesay_name"), 75);
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_sitdown_name"), 76);
    with

    this.dictionary_4.Add("dance", 71);
    this.dictionary_4.Add("rave", 72);
    this.dictionary_4.Add("roll", 73);
    this.dictionary_4.Add("control", 74);
    this.dictionary_4.Add("makesay", 75);
    this.dictionary_4.Add("sitdown", 76);

  7. #67
    C# Developer neto737 is offline
    MemberRank
    Oct 2010 Join Date
    Environment.csLocation
    274Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    Quote Originally Posted by azaidi View Post
    If you want me to help you guys I'd be glad to help, I already did this sometime ago and it was pretty funny to see Aaron's secure source getting remade

    First File (Originally NET/Class321.cs)

    PHP Code:
    using System;
    using System.Net.Sockets;
    using Phoenix.Core;
    using Phoenix.Util;
    namespace 
    Phoenix.Net
    {
        
    internal sealed class AntiDDoS
        
    {
            private static 
    string[] Connections;
            private static 
    string LastConnection;

            
    internal static void Load(int int_0)
            {
                
    AntiDDoS.Connections = new string[int_0];
            }

            
    internal static bool Check(Socket Connection)
            {
                
    string IP Connection.RemoteEndPoint.ToString().Split(new char[]
                {
                    
    ':'
                
    })[0];
                if (
    IP == AntiDDoS.LastConnection)
                {
                    return 
    false;
                }
                else
                {
                    if (
    AntiDDoS.CheckConnections(IP) > 10 && IP != "127.0.0.1" && !Class13.AntiDDoSOff)
                    {
                        
    Console.ForegroundColor ConsoleColor.Blue;
                        
    Console.WriteLine(IP " was banned by Anti-DDoS system.");
                        
    Console.ForegroundColor ConsoleColor.White;
                        
    Logging.LogDDoS(IP " - " DateTime.Now.ToString());
                        
    AntiDDoS.LastConnection IP;
                        return 
    false;
                    }
                    else
                    {
                        
    int EmptySpot AntiDDoS.GetEmptySpot();

                        if (
    EmptySpot 0)
                        {
                            return 
    false;
                        }
                        else
                        {
                            
    AntiDDoS.Connections[EmptySpot] = IP;
                            return 
    true;
                        }
                    }
                }
            }
            private static 
    int CheckConnections(string IP)
            {
                
    int num 0;
                for (
    int i 0AntiDDoS.Connections.Lengthi++)
                {
                    if (
    AntiDDoS.Connections[i] == IP)
                    {
                        
    num++;
                    }
                }
                return 
    num;
            }
            
    internal static void RemoveIP(string IP)
            {
                for (
    int i 0AntiDDoS.Connections.Lengthi++)
                {
                    if (
    AntiDDoS.Connections[i] == IP)
                    {
                        
    AntiDDoS.Connections[i] = null;
                        return;
                    }
                }
            }
            private static 
    int GetEmptySpot()
            {
                for (
    int i 0AntiDDoS.Connections.Lengthi++)
                {
                    if (
    AntiDDoS.Connections[i] == null)
                    {
                        return 
    i;
                    }
                }

                return -
    1;
            }
        }

    I'm working on renaming as much as possible, if you have any specific file for me to rename tell me
    and the (int int_0) of internal static void Load?

  8. #68
    Planning Stuff Since 2013 Vrop93 is offline
    MemberRank
    Jan 2012 Join Date
    Grocery StoreLocation
    320Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    Quote Originally Posted by neto737 View Post
    and the (int int_0) of internal static void Load?
    That's the connections limit so it could be (int Limit)

  9. #69
    ส็็็็็็็ Bloodraven is offline
    MemberRank
    Sep 2009 Join Date
    AntarcticaLocation
    2,414Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    You should look into setting up a GitHub repo so you can push all your edits and eventually there would be a near identical Phoenix source with all the correct class names.

  10. #70
    Account Upgraded | Title Enabled! SkeetEmUp is offline
    MemberRank
    Aug 2011 Join Date
    358Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    Just a few questions.

    Why is everyone praising this release like its the best thing that happened to this community? There are a lot of better releases around that only need a few things fixed...

    When Phoenix was licensed half the people here used to say how crap it is and how other emulators are better... Why the change of heart?

    I also imagine this still has the crash issue for big hotels. But eh.

  11. #71
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,610Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    Quote Originally Posted by SkeetEmUp View Post
    Just a few questions.

    Why is everyone praising this release like its the best thing that happened to this community? There are a lot of better releases around that only need a few things fixed...

    When Phoenix was licensed half the people here used to say how crap it is and how other emulators are better... Why the change of heart?

    I also imagine this still has the crash issue for big hotels. But eh.
    As they found out when they moved away from phoenix that the other emulators are pretty crappy and unstable (not many people used butterfly as it had less features) and people wanted R63b. Now they realise they need a stable emulator without exploits and broken stuff that bugg people. Yet some people stick to phoenix and some are moving back because of this release.

    Wonder how the community react as the real phoenix source gets released. (which wont happen obviously)

  12. #72
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,479Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    Quote Originally Posted by SkeetEmUp View Post
    Just a few questions.

    Why is everyone praising this release like its the best thing that happened to this community? There are a lot of better releases around that only need a few things fixed...

    When Phoenix was licensed half the people here used to say how crap it is and how other emulators are better... Why the change of heart?

    I also imagine this still has the crash issue for big hotels. But eh.
    Yet you're answering your own questions.

  13. #73
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,610Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    Quote Originally Posted by Quackster View Post
    Yet you're answering your own questions.
    "Why the change of heart?"

  14. #74
    Not so spooky... MrSpooks is offline
    MemberRank
    May 2010 Join Date
    Under a rockLocation
    1,068Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    Quote Originally Posted by azaidi View Post
    To not need fix.sql find "cmd_dance_name"

    Replace
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_dance_name"), 71);
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_rave_name"), 72);
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_roll_name"), 73);
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_control_name"), 74);
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_makesay_name"), 75);
    this.dictionary_4.Add(PhoenixEnvironment.smethod_1("cmd_sitdown_name"), 76);
    with

    this.dictionary_4.Add("dance", 71);
    this.dictionary_4.Add("rave", 72);
    this.dictionary_4.Add("roll", 73);
    this.dictionary_4.Add("control", 74);
    this.dictionary_4.Add("makesay", 75);
    this.dictionary_4.Add("sitdown", 76);
    that also fixed my problem of it not loading past rolls! thanks man

  15. #75
    Planning Stuff Since 2013 Vrop93 is offline
    MemberRank
    Jan 2012 Join Date
    Grocery StoreLocation
    320Posts

    Re: Source Phoenix 3.11.0 [Organized / Fixed Source / Without Backdoors]

    Is anyone else curious on why Shorty was helping / helped with this?



Advertisement