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!

Mobile Source Code Ragnarok Origin[Full]

Newbie Spellweaver
Joined
Apr 17, 2023
Messages
50
Reaction score
15
any guide how to compile the file in windows i so someone manage to compile the server file in windows
 
Junior Spellweaver
Joined
Oct 17, 2005
Messages
104
Reaction score
4
1714294065875 - Source Code Ragnarok Origin[Full] - RaGEZONE Forums


Character disconect when lv 16
how to fix this error on DBserver
[ERROR] 2024-04-28 03:03:38,680 DBServer - OnReply(rolewritetask.cpp:225) Write role data task failed, roleid: 11000, errMsg: ErrDesc: Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row format, BLOB prefix of 768 bytes is stored inline., ErrNo: 1118line:96
 

Attachments

You must be registered for see attachments list
Last edited:
Junior Spellweaver
Joined
Sep 15, 2009
Messages
148
Reaction score
48
View attachment 260457

Character disconect when lv 16
how to fix this error on DBserver
[ERROR] 2024-04-28 03:03:38,680 DBServer - OnReply(rolewritetask.cpp:225) Write role data task failed, roleid: 11000, errMsg: ErrDesc: Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row format, BLOB prefix of 768 bytes is stored inline., ErrNo: 1118line:96
Can you share the Eng language file?
or Can you tell me which file did you use? (Ro 20g or Ro 90g)
 
Junior Spellweaver
Joined
Oct 17, 2005
Messages
104
Reaction score
4
Can you share the Eng language file?
or Can you tell me which file did you use? (Ro 20g or Ro 90g)
i use 20 Gb

Can you share the Eng language file?
or Can you tell me which file did you use? (Ro 20g or Ro 90g)
you can decrypt 1650493539.robytes from Roo asia client file
this file english language
 
Last edited:
Experienced Elementalist
Joined
Oct 15, 2010
Messages
275
Reaction score
81
View attachment 260457

Character disconect when lv 16
how to fix this error on DBserver
[ERROR] 2024-04-28 03:03:38,680 DBServer - OnReply(rolewritetask.cpp:225) Write role data task failed, roleid: 11000, errMsg: ErrDesc: Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row format, BLOB prefix of 768 bytes is stored inline., ErrNo: 1118line:96
change your row format to dynamic or compressed depending on your mysql version. or you can also alter table datatypes

sample

SQL:
ALTER TABLE `test`  ROW_FORMAT=DYNAMIC;

to ensure it globally for innodb type of table. (also its best you convert myISAM to InnoDB)

SQL:
SET GLOBAL innodb_default_row_format=DYNAMIC;
 
Last edited:
Junior Spellweaver
Joined
Oct 17, 2005
Messages
104
Reaction score
4
you don't need to use that one. Just post a text string to idipserver in my case. All command id can be found in idip.h file. Then you need to figure out which fields need to pass (checking the source code for each command. only for body part, head should be the same). Below is one example to get the diamond. Just change the roleid to your one.

data_packet={"head":{"PacketLen":1,"Cmdid":2093,"Seqid":1,"ServiceName":"1","SendTime":1,"Version":1,"Authenticate":"1","Result":1,"RetErrMsg":"1"},"body":{"Partition":1,"RoleId":11100,"Diamond":3000}}


try to start the server individually. You should see the log in output.
my error
[INFO] 2024-04-28 12:30:56,232 IDIPServer - HttpHandlerNew(idipservice.cpp:114) receive query info: {"head": {"PacketLen": 1, "Cmdid": 2093, "Seqid": 1, "ServiceName": "1", "SendTime": 1, "Version": 1, "Authenticate": "1", "Result": 1, "RetErrMsg": "1"}, "body": {"Partition": 1, "RoleId": 11000, "Diamond": 3000}}

[ERROR] 2024-04-28 12:30:56,232 IDIPServer - Send(idipreq.cpp:135) data_packet: [] format error
 
Newbie Spellweaver
Joined
Apr 5, 2024
Messages
34
Reaction score
19
my error
[INFO] 2024-04-28 12:30:56,232 IDIPServer - HttpHandlerNew(idipservice.cpp:114) receive query info: {"head": {"PacketLen": 1, "Cmdid": 2093, "Seqid": 1, "ServiceName": "1", "SendTime": 1, "Version": 1, "Authenticate": "1", "Result": 1, "RetErrMsg": "1"}, "body": {"Partition": 1, "RoleId": 11000, "Diamond": 3000}}

[ERROR] 2024-04-28 12:30:56,232 IDIPServer - Send(idipreq.cpp:135) data_packet: [] format error
Just post as raw and Text

QQ截图20240429075243 - Source Code Ragnarok Origin[Full] - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Back
Top