Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Gunbound Server Season 2 v894

Newbie Spellweaver
Joined
Oct 9, 2021
Messages
31
Reaction score
7
got any tools to make it easy way ? debugging + making the correct prices would take a lot of time on that.
the DB is from season 3, using a .dat editor would probably save you, but it is necessary to create it or have someone have it for season 2/3, maybe someone who will sell it to you, but setting up the server and running it is very easy.
 
Avatar of Shadow and Doom
Joined
Dec 3, 2004
Messages
247
Reaction score
8
the DB is from season 3, using a .dat editor would probably save you, but it is necessary to create it or have someone have it for season 2/3, maybe someone who will sell it to you, but setting up the server and running it is very easy.
I have already set it up, just didn´t want to make all tables manually +_+
 
Initiate Mage
Joined
Jul 11, 2022
Messages
4
Reaction score
0
Buenas a todos,porfavor una ayudita,cuando juego jewel,se queda todo el tiempo jugando,no acaba, porque ese error,porfavor una ayudita,gracias
 
Initiate Mage
Joined
Jul 11, 2022
Messages
4
Reaction score
0
Gracias,por avisar,el mismo error power ball,gracias, vere un poco mas el juego.

Y un favor,como podria quitar,jewel y pawer ball,del clente,cuando esten creando una partida y no aparesca,jewel y pawer ball,porfavor,una explicadita,si se puede,gracias
 
Last edited:
Newbie Spellweaver
Joined
Sep 13, 2023
Messages
14
Reaction score
3
Problem have virus think keylogger you file?
1700103969287 - Gunbound Server Season 2 v894 - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Dec 20, 2004
Messages
143
Reaction score
63
the file is packet all antivitus detect false positive 100% of the time
Problem have virus think keylogger you file?
View attachment 245388

Gracias,por avisar,el mismo error power ball,gracias, vere un poco mas el juego.

Y un favor,como podria quitar,jewel y pawer ball,del clente,cuando esten creando una partida y no aparesca,jewel y pawer ball,porfavor,una explicadita,si se puede,gracias
no se si el cliente permite tal cosa
 
Newbie Spellweaver
Joined
Feb 9, 2024
Messages
13
Reaction score
2
you using correct vercion of mysql? or mayve bad json config
I have already corrected it. MySQL v5.7.40 must be used.

Do you have a website that works well with these files?
I'm getting that same exception even though I'm using MySQL 5.7.4.

Btw, the game server starts and is listening to the correct ports, it runs just fine.

The same password is set on both JSONs.
 
Newbie Spellweaver
Joined
Feb 17, 2024
Messages
6
Reaction score
0
I have this error and even though I have already changed the client's IP and ports.
I also have the firewall disabled, any idea what error this could be? in the server consoles it does not show any errors.
I hope you can help me, thank you very much :)

1708212618158 - Gunbound Server Season 2 v894 - RaGEZONE Forums



1708212740860 - Gunbound Server Season 2 v894 - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Feb 18, 2024
Messages
9
Reaction score
4
It works wonderfully, a question about the client, is it possible to apply window mode?, the launcher option doesnt work.
A second question, this source will be have a update?
 
Newbie Spellweaver
Joined
Feb 9, 2024
Messages
13
Reaction score
2
It works wonderfully, a question about the client, is it possible to apply window mode?, the launcher option doesnt work.
A second question, this source will be have a update?
Can you help me get it working? Here the broker server crashes upon launch.
 
Newbie Spellweaver
Joined
Feb 18, 2024
Messages
9
Reaction score
4
Can you help me get it working? Here the broker server crashes upon launch.
Is Easy.

First the MysqlServer needed is 5.7.40. I think because the jdbc connector from source is old. (Mysql 8.0 Doesn't work)

Second create the Databases, with the name or your own names and import the data (the sql files inside folder)
you can use
navicat
dbbeaver
mysqlworkbench

This is the 60% of configuration.

OK, Now we go to BrokerServer who expose the channels (servers) config.json
{
"Mysql": {
"GunBoundDB_Host": "IP-WHERE-SQL-SERVER-IS", -> if is localhost put 127.0.0.1
"GunBoundDB_Port": "3306", --> default port mysql if you install in other port change this. (and the other configuration)
"GunBoundDB_User": "users",
"GunBoundDB_Pwd": "passwordb",
"GunBoundDB_DB": "db-gunbound-db",
"AdminDB_Host": "IP-WHERE-SQL-SERVER-IS",
"AdminDB_Port": "3306",
"AdminDB_User": "userdb",
"AdminDB_Pwd": "passworddb",
"AdminDB_DB": "db-name-admin"
},
"LogPackets": false,
"Port": 8400, --> port you need open for communicate
"Servers": [
{
"Name": "Name Server",
"Description": "Description",
"Ip": "your-local-ip or external-ip",
"Port": 8401, --> port expose to connect the channel (server)
"Mode": 0
}
]
}

You can replicate the folder game server for more channels. and you need update the json with other port.

The next step is go to game server folder. config.json

{
"Mysql": {
"GunBoundDB_Host": "IP-WHERE-SQL-SERVER-IS",
"GunBoundDB_Port": "3306",
"GunBoundDB_User": "userdb",
"GunBoundDB_Pwd": "passwordb",
"GunBoundDB_DB": "db-name-gunbound",
"AdminDB_Host": "IP-WHERE-SQL-SERVER-IS",
"AdminDB_Port": "3306",
"AdminDB_User": "userdb",
"AdminDB_Pwd": "passwordb",
"AdminDB_DB": "db-name-admin",
"ItemDB_Host": "IP-WHERE-SQL-SERVER-IS",
"ItemDB_Port": "3306",
"ItemDB_User": "userdb",
"ItemDB_Pwd": "passwordb",
"ItemDB_DB": "db-name-item",
"RecordDB_Host": "IP-WHERE-SQL-SERVER-IS",
"RecordDB_Port": "3306",
"RecordDB_User": "userdb",
"RecordDB_Pwd": "passwordb",
"RecordDB_DB": "db-name-record",
"GuildDB_Host": "IP-WHERE-SQL-SERVER-IS",
"GuildDB_Port": "3306",
"GuildDB_User": "userdb",
"GuildDB_Pwd": "passwordb",
"GuildDB_DB": "db-name-guild"
},
"GolfFactor": 150,
"GradeLimitFirst": 19,
"GradeLimitLast": 19,
"FuncRestrict": 1040384, -> I read this number made some change in the server like (avatar on/events) anyone know some funrestrict generator?
"ScoreFactor": 110,
"MaxConnection": 1000,
"Channel": "Welcome",
"Room": "Welcome",
"LogPackets": false,
"EnableItem2": true, --> item 2 enabled /false disabled
"EventActProp0": 0,
"EventActProp1": 0,
"EventActProp2": 0,
"EventActProp3": 0,
"ItemSeal": 100,
"ItemEnchantLv1_4": 60,
"ItemEnchantLv5_8": 50,
"ItemEnchantLv9_12": 40,
"ItemEnchantLv13_16": 30,
"ItemEnchantLv17_18": 20,
"ItemEnchantLv19_20": 10,
"ItemEnchantLv21_30": 5,
"VersionFirst": 1,
"ServerClassic": 0,
"CheckSum": 0,
"Port": 8401, --> port for connect, if you see this is the same in the other file.
"CashEvent": {
"WinReward": 250,
"LoseReward": 100,
"Enable": false,
"Expire": 0.0
}
}


And you are done. this made the 100%
Now you can open broker and server without error.

Remember change all db names, ip, password.
Not use mysql root user for server (security)

Now for last part is:
Firewall configuration -> expose that port for communicate,
Router configuration -> expose to internet
The last part is configure the client modify GunBound.INI inside client for point to your server. (this is apart from server conf)
 
Newbie Spellweaver
Joined
Feb 21, 2024
Messages
9
Reaction score
0
how i can create admin account?
1708540851070 - Gunbound Server Season 2 v894 - RaGEZONE Forums
1708540885504 - Gunbound Server Season 2 v894 - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Feb 21, 2024
Messages
9
Reaction score
0
In user table authority 1 e authority 2:
100 admin
99 gm
I tried both 100 and 99 and I'm always on the chicken icon, I wish I had the hammer

Captura de pantalla 2024-02-21 183402 - Gunbound Server Season 2 v894 - RaGEZONE Forums
Captura de pantalla 2024-02-21 183244 - Gunbound Server Season 2 v894 - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Feb 9, 2024
Messages
13
Reaction score
2
Is Easy.

First the MysqlServer needed is 5.7.40. I think because the jdbc connector from source is old. (Mysql 8.0 Doesn't work)

Second create the Databases, with the name or your own names and import the data (the sql files inside folder)
you can use
navicat
dbbeaver
mysqlworkbench

This is the 60% of configuration.

OK, Now we go to BrokerServer who expose the channels (servers) config.json
{
"Mysql": {
"GunBoundDB_Host": "IP-WHERE-SQL-SERVER-IS", -> if is localhost put 127.0.0.1
"GunBoundDB_Port": "3306", --> default port mysql if you install in other port change this. (and the other configuration)
"GunBoundDB_User": "users",
"GunBoundDB_Pwd": "passwordb",
"GunBoundDB_DB": "db-gunbound-db",
"AdminDB_Host": "IP-WHERE-SQL-SERVER-IS",
"AdminDB_Port": "3306",
"AdminDB_User": "userdb",
"AdminDB_Pwd": "passworddb",
"AdminDB_DB": "db-name-admin"
},
"LogPackets": false,
"Port": 8400, --> port you need open for communicate
"Servers": [
{
"Name": "Name Server",
"Description": "Description",
"Ip": "your-local-ip or external-ip",
"Port": 8401, --> port expose to connect the channel (server)
"Mode": 0
}
]
}

You can replicate the folder game server for more channels. and you need update the json with other port.

The next step is go to game server folder. config.json

{
"Mysql": {
"GunBoundDB_Host": "IP-WHERE-SQL-SERVER-IS",
"GunBoundDB_Port": "3306",
"GunBoundDB_User": "userdb",
"GunBoundDB_Pwd": "passwordb",
"GunBoundDB_DB": "db-name-gunbound",
"AdminDB_Host": "IP-WHERE-SQL-SERVER-IS",
"AdminDB_Port": "3306",
"AdminDB_User": "userdb",
"AdminDB_Pwd": "passwordb",
"AdminDB_DB": "db-name-admin",
"ItemDB_Host": "IP-WHERE-SQL-SERVER-IS",
"ItemDB_Port": "3306",
"ItemDB_User": "userdb",
"ItemDB_Pwd": "passwordb",
"ItemDB_DB": "db-name-item",
"RecordDB_Host": "IP-WHERE-SQL-SERVER-IS",
"RecordDB_Port": "3306",
"RecordDB_User": "userdb",
"RecordDB_Pwd": "passwordb",
"RecordDB_DB": "db-name-record",
"GuildDB_Host": "IP-WHERE-SQL-SERVER-IS",
"GuildDB_Port": "3306",
"GuildDB_User": "userdb",
"GuildDB_Pwd": "passwordb",
"GuildDB_DB": "db-name-guild"
},
"GolfFactor": 150,
"GradeLimitFirst": 19,
"GradeLimitLast": 19,
"FuncRestrict": 1040384, -> I read this number made some change in the server like (avatar on/events) anyone know some funrestrict generator?
"ScoreFactor": 110,
"MaxConnection": 1000,
"Channel": "Welcome",
"Room": "Welcome",
"LogPackets": false,
"EnableItem2": true, --> item 2 enabled /false disabled
"EventActProp0": 0,
"EventActProp1": 0,
"EventActProp2": 0,
"EventActProp3": 0,
"ItemSeal": 100,
"ItemEnchantLv1_4": 60,
"ItemEnchantLv5_8": 50,
"ItemEnchantLv9_12": 40,
"ItemEnchantLv13_16": 30,
"ItemEnchantLv17_18": 20,
"ItemEnchantLv19_20": 10,
"ItemEnchantLv21_30": 5,
"VersionFirst": 1,
"ServerClassic": 0,
"CheckSum": 0,
"Port": 8401, --> port for connect, if you see this is the same in the other file.
"CashEvent": {
"WinReward": 250,
"LoseReward": 100,
"Enable": false,
"Expire": 0.0
}
}


And you are done. this made the 100%
Now you can open broker and server without error.

Remember change all db names, ip, password.
Not use mysql root user for server (security)

Now for last part is:
Firewall configuration -> expose that port for communicate,
Router configuration -> expose to internet
The last part is configure the client modify GunBound.INI inside client for point to your server. (this is apart from server conf)
Thanks, but I read it carefully and I could see this is exactly what I've done. I downloaded the files fresh and made another attempt following your tutorial and got the same problem, the broker server crashes when I run it.

Game server runs perfectly fine, though. It's very frustrating, this crash with the broker server should be fixed.

I'm using MySql 5.7.44 btw.



EDIT:
Apparently the broker uses a MySQL connector that doesn't support versions newer than 5.7.40.
I downgraded to that version and now it runs fine.

By the way versions lower than 5.7 (like 5.6) didn't work either , as they don't recognize some of the commands in the database script.
 
Last edited:
Back
Top