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