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!

how to delete missions?

Junior Spellweaver
Joined
Aug 31, 2008
Messages
191
Reaction score
28
It's very hard to make it, cause there are several types of aura, and style code changes a lot. So too many combinations. you can make a PHP script to let players select their combo/aura/BM etc... :) And removing missions is useless, QuestDungeon, Quest.scp and cabal.enc / cont.enc
 
Upvote 0
Junior Spellweaver
Joined
Aug 31, 2008
Messages
191
Reaction score
28
Edit dbo.cabal_sp_newchar

Code:
insert into cabal_character_table( CharacterIdx, Name, LEV, [EXP], [STR], DEX, [INT], PNT, Rank, Alz,
WorldIdx, [Position], Style, HP, MP, SP, SwdPNT, MagPNT, RankEXP, Flags, WarpBField, MapsBField, Reputation, Reserved1 )
select @characteridx, @charname, LEV, [EXP], [STR], [DEX], [INT], [PNT], Rank, Alz,
WorldIdx, Position, @style, HP, MP, SP, SwdPNT, MagPNT, RankEXP, Flags, WarpBField, MapsBField, Reputation, Reserved1
from #TempTable

Good luck!
 
Upvote 0
Back
Top