[Development] Continue OZ-Network project!

Page 1 of 3 123 LastLast
Results 1 to 15 of 40
  1. #1
    Member yomega is offline
    MemberRank
    Apr 2012 Join Date
    75Posts

    [Development] Continue OZ-Network project!

    Hi,Im continue oz-network project!

    I search few man to fix the server!

    I already resolved this problem:
    -Shop enter/leave
    -Inventory enter/leave
    -Title(50% - Im recoding from 0,take new title already fix!)

    Screen of title fix!


    [EDIT]

    Server with some other fix!
    Fix :
    -Inventory enter/leave with no crash!
    -Shop enter/leave with no crash!
    -Title in development! Already get but don't save(I do this in 2 day or 4)
    -Room remove(not 100%)
    -Room time(I set 30 second to test,It was a oversight)
    -Tutorial mode removed from lobby!(Because don't work)

    DOWNLOAD:
    Server + source fixed : http://spider96.altervista.org/FixedOZ-network.rar
    If you have problem with client use this! https://drive.google.com/file/d/0B2M...NEk/view?pli=1
    Last edited by yomega; 04-07-15 at 04:39 PM. Reason: New download!


  2. #2
    Member pan03 is offline
    MemberRank
    Jul 2012 Join Date
    96Posts

    Re: [DEV] Continue OZ-Network project!

    hey you will release source fixed?
    Log in to client etc?
    can help

  3. #3
    Member yomega is offline
    MemberRank
    Apr 2012 Join Date
    75Posts

    Re: [DEV] Continue OZ-Network project!

    I load on internet and public! Wait 30 minutes or less!

  4. #4
    Member yomega is offline
    MemberRank
    Apr 2012 Join Date
    75Posts

    Re: [DEV] Continue OZ-Network project!

    See the post,I have edit!

  5. #5
    Member pan03 is offline
    MemberRank
    Jul 2012 Join Date
    96Posts

    Re: [DEV] Continue OZ-Network project!

    thankyou man

    - - - Updated - - -

    i'm using your source fix
    you understand why account can't log in to client man?


  6. #6
    Proficient Member qabeel is offline
    MemberRank
    Apr 2013 Join Date
    177Posts

    Re: [DEV] Continue OZ-Network project!

    Quote Originally Posted by yomega View Post
    Hi,Im continue oz-network project!

    I search few man to fix the server!

    I already resolved this problem:
    -Shop enter/leave
    -Inventory enter/leave
    -Title(50% - Im recoding from 0,take new title already fix!)

    Screen of title fix!


    [EDIT]

    Server with some other fix!
    Fix :
    -Inventory enter/leave with no crash!
    -Shop enter/leave with no crash!
    -Title in development! Already get but don't save(I do this in 2 day or 4)
    -Room remove(not 100%)

    DOWNLOAD:
    Server + source fixed : http://spider96.altervista.org/FixedOZ-network.rar
    If you have problem with client use this! https://drive.google.com/file/d/0B2M...NEk/view?pli=1
    I will fix shop and add items and i will share it

  7. #7
    Member yomega is offline
    MemberRank
    Apr 2012 Join Date
    75Posts

    Re: [DEV] Continue OZ-Network project!

    I don't know :/ .. uhm..client ip edited?

    - - - Updated - - -

    What man?

  8. #8
    Proficient Member qabeel is offline
    MemberRank
    Apr 2013 Join Date
    177Posts

    Re: [DEV] Continue OZ-Network project!

    Quote Originally Posted by yomega View Post
    I don't know :/ .. uhm..client ip edited?

    - - - Updated - - -

    What man?
    item's shop i will add

    there is the same error on leave room during match

  9. #9
    Member pan03 is offline
    MemberRank
    Jul 2012 Join Date
    96Posts

    Re: [DEV] Continue OZ-Network project!

    YES I Edited all ip can't log in client

  10. #10
    Enthusiast Nyl Felipe is offline
    MemberRank
    Jun 2012 Join Date
    Lençóis PauliLocation
    39Posts

    Re: [DEV] Continue OZ-Network project!

    Quote Originally Posted by pan03 View Post
    thankyou man

    - - - Updated - - -

    i'm using your source fix
    you understand why account can't log in to client man?

    Same problem here. fix?

  11. #11
    Member yomega is offline
    MemberRank
    Apr 2012 Join Date
    75Posts

    Re: [DEV] Continue OZ-Network project!

    Quote Originally Posted by Nyl Felipe View Post
    Same problem here. fix?
    The unique problem I see is the server don't receive connection! Problem with ip probabily!

  12. #12
    ◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜ Taiga is offline
    DeveloperRank
    May 2007 Join Date
    InternetLocation
    2,464Posts

    Re: [DEV] Continue OZ-Network project!

    Re-implement the account system, especially the thing that keeps loading the tables in the memory, it's very inefficient.

  13. #13
    Member pan03 is offline
    MemberRank
    Jul 2012 Join Date
    96Posts

    Re: [DEV] Continue OZ-Network project!

    now log in ok one account
    when other friend log in client for pvp 1x1 get this error Auth stop WORK



  14. #14
    Enthusiast Sabillah is offline
    MemberRank
    Oct 2014 Join Date
    27Posts

    Re: [DEV] Continue OZ-Network project!

    pvp 1 vs 1 always waiting for game
    why ? :o

  15. #15
    Member Sicily94 is offline
    MemberRank
    Jul 2012 Join Date
    83Posts

    Re: [DEV] Continue OZ-Network project!

    Can you Fix the AccountCreate for this server like this, please ? Thank's in advance

    Code:
    public bool CreateAccount(string login, string password)
            {
                try
                {
                    using (MySqlConnection mySqlConnection = SQLjec.getInstance().conn())
                    {
                        MySqlCommand command = mySqlConnection.CreateCommand();
                        mySqlConnection.Open();
                        command.CommandText = "SELECT COUNT(*) FROM accounts WHERE login='" + login + "';";
                        command.ExecuteScalar();
                        command.CommandText = "INSERT INTO accounts (login, password, weapon_primary, weapon_secondary, weapon_melee, weapon_thrown_normal, weapon_thrown_special, char_red, char_blue, char_helmet, char_dino) VALUES ('" + login + "', '" + password + "', '100003004', '601002003', '702001001', '803007001', '904007002', '1001001005', '1001002006', '1102003001', '1006003042');";
                        command.CommandType = CommandType.Text;
                        command.ExecuteNonQuery();
                        command.CommandText = "SELECT * FROM accounts WHERE login='" + login + "';";
                        command.CommandType = CommandType.Text;
                        MySqlDataReader mySqlDataReader = command.ExecuteReader();
                        Account acc = new Account();
                        while (mySqlDataReader.Read())
                            acc.player_id = mySqlDataReader.GetInt32("player_id");
                        acc.name = login;
                        acc.password = password;
                        acc.weapon_primary = 100003004;
                        acc.weapon_secondary = 601002003;
                        acc.weapon_melee = 702001001;
                        acc.weapon_thrown_normal = 803007001;
                        acc.weapon_thrown_special = 904007002;
                        acc.char_red = 1001001005;
                        acc.char_blue = 1001002006;
                        acc.char_helmet = 1102003001;
                        acc.char_dino = 1006003042;
                        acc.setInventory(new PlayerInventory(acc.player_id));
                        this.AddAccount(acc);
                        return true;
    
                    }
                }
    
                catch (Exception ex)
                {
                    CLogger.getInstance().error("|[ACM]| Não foi possível ver a conta '" + login + "'");
                    CLogger.getInstance().error("|[ACM]| " + ((object)ex).ToString());
                    return false;
                }
    
            }
    Last edited by Shoelace; 04-07-15 at 10:40 PM. Reason: Added CODE tags



Page 1 of 3 123 LastLast

Advertisement