Starting with....

Newbie Spellweaver
Joined
Jul 2, 2005
Messages
96
Reaction score
0
I have searched but to no avail T_T.

Is there any possible trigger i can add to teach a new character how to log in and automatically learn the following:

  • Combo
  • Astral Board (Summon/Attack)
  • Astral Bike (Summon/Attack)
    [*]Battlemode 1
    [*]Battlemode 2
    Just noticed these automatically get added with ranks, but no SP to use them.
Then i would like to insert a kind of mod to a newly created NPC that will give the player their aura they have selected and rank them up when at the appropriate level.

Also i know CabalToolz allows to select nation/reset but i would also like the NPC to do this as there is no working mirrors for Cabal Toolz T_T

Thanks
-02goswej
 
owh? :D: 1st Happy Newyear^__^ then. . anyways. . let me see. . what server files are u using sir? automatically getting those things is server sided.. so try checking ur server^__^ check sir chumpys guide^__^ good lcuk sir^__^:thumbup:
 
Upvote 0
I have searched but to no avail T_T.

Is there any possible trigger i can add to teach a new character how to log in and automatically learn the following:

  • Combo
  • Astral Board (Summon/Attack)
  • Astral Bike (Summon/Attack)
    [*]Battlemode 1
    [*]Battlemode 2
    Just noticed these automatically get added with ranks, but no SP to use them.
Then i would like to insert a kind of mod to a newly created NPC that will give the player their aura they have selected and rank them up when at the appropriate level.

Also i know CabalToolz allows to select nation/reset but i would also like the NPC to do this as there is no working mirrors for Cabal Toolz T_T

Thanks
-02goswej


not.

We need enc editor.

so it is created triggers for each class that creates the personagme already come with these attributes.

PS:.You can even edit an NPC on your linux server, but the question is how to change in your client? =(
 
Upvote 0
Hmm
This is a big let down :/ No wonder why all cabal servers are the same, i spose they are still fairly new. Hopefully something comes out soon to change this :)

Happy new year -10 Hours :P

Also, im using Chumpys repack, and his item shop, got it all working 100% ingame...great......now how would i add bulk items? like 10xUCH as they arent stackable i cant use the itemopt


Edit - If anyone is user the Chumpy item shop i will share with you how to add 10k Alz into a new registered users bank:

(Using SQL 2005)
In the Account Database->Programmability->Stored Procedures->cabal_toolregisterAccount->right click->modify:
Under "select @usernum as usernum" add the following:
Code:
insert into [CashShop].[dbo].[Bank](usernum, Alz)
values(@UserNum,10000)

so the whole of the Procedure looks like the following (Mine is edited to make account premium for 999 days and give them 10k alz in Chumpys online store):
Code:
USE [account]
GO
/****** Object:  StoredProcedure [dbo].[cabal_tool_registerAccount]    Script Date: 01/01/2009 06:10:12 ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO

/****** Object:  Stored Procedure dbo.cabal_tool_registerAccount    Script Date: 2008-4-14 21:40:21 ******/


ALTER  PROCEDURE [dbo].[cabal_tool_registerAccount]   (@id varchar(32),  @password  varchar(32))
AS
begin tran
	declare @UserNum as int
	insert into cabal_auth_table( ID, Password, Login, AuthType, IdentityNo ) 
	values(@id, dbo.fn_md5(@password), '0', 1, '7700000000000' )

	set @UserNum = @@identity


	insert into cabal_charge_auth(usernum, type, expiredate, payminutes)
	values(@UserNum, 1, DATEADD(day, 999, getdate()), 0)
	
	select @UserNum as usernum
insert into [CashShop].[dbo].[Bank](usernum, Alz)
values(@UserNum,10000)
commit

Hope this helps some people :o
 
Last edited:
Upvote 0
I have searched but to no avail T_T.

Is there any possible trigger i can add to teach a new character how to log in and automatically learn the following:

  • Combo
  • Astral Board (Summon/Attack)
  • Astral Bike (Summon/Attack)
    [*]Battlemode 1
    [*]Battlemode 2
    Just noticed these automatically get added with ranks, but no SP to use them.
Then i would like to insert a kind of mod to a newly created NPC that will give the player their aura they have selected and rank them up when at the appropriate level.

Also i know CabalToolz allows to select nation/reset but i would also like the NPC to do this as there is no working mirrors for Cabal Toolz T_T

Thanks
-02goswej

The only way to do the first part is to decode the quest data, skill data and class data binary values which is far from easy. Also with the aura any automated way of doing it would mean everybody ends up with the same aura. These edits would also cause problems for the player doing quests as it would look like certain quests had been done when they had not.

NPCs cannot be edited yet as the others have mentioned as we can decrypt enc files but not encrypt them yet. Once we get a working enc encoder we will be able to do so much more but we are quite limited now.

There is a working mirror posted near the end of the cabaltoolz topic.
 
Upvote 0
Back