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!

8.5 Classes in 1 CabalMain

Inactive
Joined
Jan 20, 2009
Messages
1,014
Reaction score
1,830
I can see a lot of people here right now,.. There are currently 42 users browsing this thread. (10 members and 32 guests)

and none or some?! will share their fixes,..
:laugh:

Your calling out others for not providing fixes yet you haven't provided a single fix yourself in this thread? lol.

upanddown thanks for your contribution.
 
Junior Spellweaver
Joined
Mar 15, 2022
Messages
174
Reaction score
8
Your calling out others for not providing fixes yet you haven't provided a single fix yourself in this thread? lol.

@upanddown thanks for your contribution.

still setting up the server sir, If I find even the smallest and the slightest fix that in my knowledge that I can provide I will share sir...
 
Joined
Oct 10, 2007
Messages
1,772
Reaction score
187
this error comes out when you change classes and the client exits

[Wed May 4 2022 22:00:26.172443 3786161008]: [RANK LIMIT] characterIdx (8) set to Transcender, type BattleStyleLev[Wed May 4 2022 22:00:26.172511 3786161008]: [##ERROR##] UnPack(): Fail To Insert GM Buff : CharIdx(8), SkillIdx(275), Result(0)[Wed May 4 2022 22:00:26.176029 3786161008]: [##ERROR##] ApplyForInit(): CanEquipItemInSlot false. CharIdx(8), SlotIdx(3), ItemType(5)[Wed May 4 2022 22:00:26.176067 3786161008]: close(): closing(192.168.1.4)[Wed May 4 2022 22:00:26.176511 3786161008]: 1.close user -1 [D2356E8] (192.168.1.4)[Wed May 4 2022 22:00:26.176545 3786161008]: [##ERROR##] 'OnITCResultInits' fail (Proc/Initialize.cpp:1591)[Wed May 4 2022 22:00:34.007515 4100356976]: Request LastNationRewardWarResults
 
Inactive
Joined
Jan 20, 2009
Messages
1,014
Reaction score
1,830
If I find even the smallest and the slightest fix that in my knowledge that I can provide I will share sir...

I'm really not trying to call you out but your remarks about how others need to help when your doing nothing but asking help questions yourself all the time is a pretty dickish move. These types of posts where people demand fixes make people who have the fixes not want to post them.

Food for thought.
 
Newbie Spellweaver
Joined
Sep 17, 2020
Messages
16
Reaction score
2
still setting up the server sir, If I find even the smallest and the slightest fix that in my knowledge that I can provide I will share sir...
It was clearly stated on the post that this files are not for starters.



this error comes out when you change classes and the client exits
Just use the style and not the whole script. I'm sure items are not sync so you are getting an error
 
Newbie Spellweaver
Joined
Mar 20, 2019
Messages
9
Reaction score
0
someone who can change the classes has a way to share thank you so far I couldn't get it here if something changes I will contribute
 
Joined
Aug 27, 2013
Messages
800
Reaction score
1,955
I'll try to make everyone's life extremely easy (those who struggle creating new classes), although everything is inside the set_cabal_character procedure, couple simple MSSQL queries will give you wonderful results:

-> Run it on Server01 -> right click on database -> "New Query"
-> Account must be offline.

Gladiator
Code:
update cabal_character_table set Style = Style + 536870912 where CharacterIdx = YourCharIDX
(Must be a Warrior Class)

Skills:
Code:
UPDATE [dbo].[cabal_skilllist_table]
SET [Data] = 0xB000010000B1000101004D01014600310101480032010149003801014B002C01014E002D01014F002E010150002F01015100DA0101680045010169004601016A004701016B00A301014700A4010144004401014A004801016C004901016D00B200012000B300010200B400010300B5000121008B010104008C010105008D010122008E010106008F01010700600101080061010109006201010A006301010B006401010C006501010D006601010E006701010F0070010110007101011100720101120073010113007401011400750101230076010115007701011600780101240079010125007A010126002501011700D000011800D1000119003C010152007B01015300
WHERE CharacterIdx = CharacterIdx

Force Gunner
Code:
update cabal_character_table set Style = Style + 805306368 where CharacterIdx = YourCharIDX
(Must be a Force Archer Class)

Skills:
Code:
UPDATE [dbo].[cabal_skilllist_table]
SET [Data] = 0x4C0001200058000121004A010143004D01014600360101480037010149003901014B003001014E00DA010168003F010169004001016A004101016B00A301014700A4010144003E01014A004201016C004301016D004E000122004F000123005000012400510001250052000126005300012700550001280054000129005600012A005700012B005900012C005A00012D005B00012E005C000152005D000153005F00015400B701012F00B801013000BA01013100B901013200BB01013300BC01013400BD01013500BE01013600BF01013700C001013800C101013900C201013A00AC00013C00AB00013D006200013E00AE00013F003D01013B00D000010000D100010100
WHERE CharacterIdx = CharacterIdx


Dark Mage
Code:
update cabal_character_table set Style = Style + 1073741824 where CharacterIdx = YourCharIDX
(Must be a Wizard Class)

Skills:
Code:
UPDATE [dbo].[cabal_skilllist_table]
SET [Data] = 0x640001200065000121004D01014600A000014800A1000149001401014B001501014E00DA01016800A300016900A400016A00A500016B00A200014A001301016D00A600016C00A301014700A40101440066000122006700012300680001240069000125006A000126006B000127006C000128006D000129006E00012A006F00012B007000012C007100012D007200012E00AD01012F00A801013000A901013100AA01013200AB01013300AC01013400AE01013500AF01013600B001013700B101013800B201013900B401013A00B501013B00B601013C00D100010000D000010100B301013D00
WHERE CharacterIdx = CharacterIdx

Friendly reminder - don't touch these files if you struggle with basic stuff, I am assuming that note "not for beginners/starters" was there for a reason(!), as there will be more beging, complaining and useless posting/spamming, and in general common sense and a bit of googling would solve 99% of the problems.
[Even the class change is the most basic thing you can do with all the provided information]
 
Newbie Spellweaver
Joined
May 26, 2014
Messages
8
Reaction score
1
Now i understand what you want to say with not finished DM :D::D
Jokes aside, the server is working fine except for the DM that is already described that is not finished, anyway thanks for the files!
qd7aIVd - 8.5 Classes in 1 CabalMain - RaGEZONE Forums


 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Mar 20, 2019
Messages
9
Reaction score
0
good night, thank you very much for making the files available if anyone has the dec in Portuguese of the client 8 class 1 cabalmain wants to share
 
Joined
Oct 10, 2007
Messages
1,772
Reaction score
187
I'll try to make everyone's life extremely easy (those who struggle creating new classes), although everything is inside the set_cabal_character procedure, couple simple MSSQL queries will give you wonderful results:

-> Run it on Server01 -> right click on database -> "New Query"
-> Account must be offline.

Gladiator
Code:
update cabal_character_table set Style = Style + 536870912 where CharacterIdx = YourCharIDX
(Must be a Warrior Class)

Skills:
Code:
UPDATE [dbo].[cabal_skilllist_table]
SET [Data] = 0xB000010000B1000101004D01014600310101480032010149003801014B002C01014E002D01014F002E010150002F01015100DA0101680045010169004601016A004701016B00A301014700A4010144004401014A004801016C004901016D00B200012000B300010200B400010300B5000121008B010104008C010105008D010122008E010106008F01010700600101080061010109006201010A006301010B006401010C006501010D006601010E006701010F0070010110007101011100720101120073010113007401011400750101230076010115007701011600780101240079010125007A010126002501011700D000011800D1000119003C010152007B01015300
WHERE CharacterIdx = CharacterIdx

Force Gunner
Code:
update cabal_character_table set Style = Style + 805306368 where CharacterIdx = YourCharIDX
(Must be a Force Archer Class)

Skills:
Code:
UPDATE [dbo].[cabal_skilllist_table]
SET [Data] = 0x4C0001200058000121004A010143004D01014600360101480037010149003901014B003001014E00DA010168003F010169004001016A004101016B00A301014700A4010144003E01014A004201016C004301016D004E000122004F000123005000012400510001250052000126005300012700550001280054000129005600012A005700012B005900012C005A00012D005B00012E005C000152005D000153005F00015400B701012F00B801013000BA01013100B901013200BB01013300BC01013400BD01013500BE01013600BF01013700C001013800C101013900C201013A00AC00013C00AB00013D006200013E00AE00013F003D01013B00D000010000D100010100
WHERE CharacterIdx = CharacterIdx


Dark Mage
Code:
update cabal_character_table set Style = Style + 1073741824 where CharacterIdx = YourCharIDX
(Must be a Wizard Class)

Skills:
Code:
UPDATE [dbo].[cabal_skilllist_table]
SET [Data] = 0x640001200065000121004D01014600A000014800A1000149001401014B001501014E00DA01016800A300016900A400016A00A500016B00A200014A001301016D00A600016C00A301014700A40101440066000122006700012300680001240069000125006A000126006B000127006C000128006D000129006E00012A006F00012B007000012C007100012D007200012E00AD01012F00A801013000A901013100AA01013200AB01013300AC01013400AE01013500AF01013600B001013700B101013800B201013900B401013A00B501013B00B601013C00D100010000D000010100B301013D00
WHERE CharacterIdx = CharacterIdx

Friendly reminder - don't touch these files if you struggle with basic stuff, I am assuming that note "not for beginners/starters" was there for a reason(!), as there will be more beging, complaining and useless posting/spamming, and in general common sense and a bit of googling would solve 99% of the problems.
[Even the class change is the most basic thing you can do with all the provided information]

with this error query
update cabal_character_table set Style = Style + 536870912 where CharacterIdx = YourCharIDX

even if I put my char number here = YourCharIDX

upgrade item max +15
 
Last edited:
Newbie Spellweaver
Joined
Sep 17, 2020
Messages
16
Reaction score
2
with this error query
update cabal_character_table set Style = Style + 536870912 where CharacterIdx = YourCharIDX

even if I put my char number here = YourCharIDX
Care to post the error that you are getting?
 
Newbie Spellweaver
Joined
Sep 17, 2020
Messages
16
Reaction score
2
Try this one

For Gladiator
UPDATE cabal_character_table SET Style = 536871073
Where CharacterIdx = Your CharacterIdx

For Gunner
UPDATE cabal_character_table SET Style = 80530653
Where CharacterIdx = Your CharacterIdx

For Dark Mage
UPDATE cabal_character_table SET Style = 1073741987
Where CharacterIdx = Your CharacterIdx


Be sure to run it on Server01 database
 
Joined
Oct 10, 2007
Messages
1,772
Reaction score
187
Try this one

For Gladiator
UPDATE cabal_character_table SET Style = 536871073
Where CharacterIdx = Your CharacterIdx

For Gunner
UPDATE cabal_character_table SET Style = 80530653
Where CharacterIdx = Your CharacterIdx

For Dark Mage
UPDATE cabal_character_table SET Style = 1073741987
Where CharacterIdx = Your CharacterIdx


Be sure to run it on Server01 database

nothing gives me error



Has anyone seen that the magician's staff is in an incorrect position?
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
May 24, 2018
Messages
161
Reaction score
8
I've already checked everything, he logs in normally but I don't enter the channel I don't know what else to be sorry for my incompetence.I have already restored all the databases

Did you check the IP in the language.dec? It should be your ip
 
Back
Top