• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Development] Continue OZ-Network project!

Status
Not open for further replies.
Newbie Spellweaver
Joined
Apr 2, 2012
Messages
72
Reaction score
10
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! :sleep:
OKhLpZN - [Development] Continue OZ-Network project! - RaGEZONE Forums


[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 :
If you have problem with client use this!
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Jul 6, 2012
Messages
96
Reaction score
6
Re: [DEV] Continue OZ-Network project!

hey you will release source fixed?
Log in to client etc?
can help
 
Newbie Spellweaver
Joined
Apr 2, 2012
Messages
72
Reaction score
10
Re: [DEV] Continue OZ-Network project!

I load on internet and public! Wait 30 minutes or less!
 
Newbie Spellweaver
Joined
Apr 2, 2012
Messages
72
Reaction score
10
Re: [DEV] Continue OZ-Network project!

See the post,I have edit!
 
Newbie Spellweaver
Joined
Jul 6, 2012
Messages
96
Reaction score
6
Re: [DEV] Continue OZ-Network project!

thankyou man



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

4rKFA09 - [Development] Continue OZ-Network project! - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Apr 3, 2013
Messages
189
Reaction score
2
Re: [DEV] 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! :sleep:
yomega - [Development] Continue OZ-Network project! - RaGEZONE Forums


[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 :
If you have problem with client use this!

I will fix shop and add items and i will share it
 
Newbie Spellweaver
Joined
Apr 2, 2012
Messages
72
Reaction score
10
Re: [DEV] Continue OZ-Network project!

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



What man?
 
Newbie Spellweaver
Joined
Jul 6, 2012
Messages
96
Reaction score
6
Re: [DEV] Continue OZ-Network project!

YES I Edited all ip can't log in client
 
Newbie Spellweaver
Joined
Jun 28, 2012
Messages
38
Reaction score
6
Re: [DEV] Continue OZ-Network project!

thankyou man



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

4rKFA09 - [Development] Continue OZ-Network project! - RaGEZONE Forums

Same problem here. fix?
 

Attachments

You must be registered for see attachments list
◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜
Developer
Joined
May 29, 2007
Messages
2,167
Reaction score
899
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.
 
Newbie Spellweaver
Joined
Jul 6, 2012
Messages
96
Reaction score
6
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


WiWxKj5 - [Development] Continue OZ-Network project! - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Oct 19, 2014
Messages
27
Reaction score
0
Re: [DEV] Continue OZ-Network project!

pvp 1 vs 1 always waiting for game
why ? :eek:
 
Junior Spellweaver
Joined
Jul 15, 2012
Messages
102
Reaction score
21
Re: [DEV] Continue OZ-Network project!

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

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 a moderator:
Newbie Spellweaver
Joined
Apr 2, 2012
Messages
72
Reaction score
10
Re: [DEV] Continue OZ-Network project!

Sabillah you have configurated and compile the source?


First I fix the title,and after I want check autocreate! :)
 
Last edited by a moderator:
Newbie Spellweaver
Joined
Sep 21, 2013
Messages
47
Reaction score
14
Re: [DEV] Continue OZ-Network project!

please can you tell me what ports need to be opened in an online vps point blank to play? :(:
 
Newbie Spellweaver
Joined
May 17, 2014
Messages
14
Reaction score
0
Re: [DEV] Continue OZ-Network project!

Thx for sharing and continue projects!!
 
Newbie Spellweaver
Joined
Apr 2, 2012
Messages
72
Reaction score
10
Re: [DEV] Continue OZ-Network project!

please can you tell me what ports need to be opened in an online vps point blank to play? :(:

39190,39191,40000,40001 <-- This is the port :laugh:

[POST]
Add new fix/features:
-Room time(I set 30 second to test,It was a oversight)
-Tutorial mode removed from lobby!(Because don't work)

In some time I update with new download!
 
Last edited:
Status
Not open for further replies.
Back
Top