Starting with....

Results 1 to 7 of 7
  1. #1
    Valued Member 02goswej is offline
    MemberRank
    Jul 2005 Join Date
    UKLocation
    126Posts

    Starting with....

    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 2Just 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


  2. #2
    Account Upgraded | Title Enabled! majidemo is offline
    MemberRank
    Sep 2008 Join Date
    localhostLocation
    659Posts

    Re: Starting with....

    owh? 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^__^

  3. #3
    xHTML/CSS/JS/Ruby LostSpirit is offline
    MemberRank
    Feb 2008 Join Date
    $ gem search -rLocation
    482Posts

    Re: Starting with....

    Quote Originally Posted by 02goswej View Post
    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 2Just 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? =(

  4. #4
    Account Upgraded | Title Enabled! majidemo is offline
    MemberRank
    Sep 2008 Join Date
    localhostLocation
    659Posts

    Re: Starting with....

    owh? but no one can easily edit enc files right??? ^__^ T_T

  5. #5
    Valued Member 02goswej is offline
    MemberRank
    Jul 2005 Join Date
    UKLocation
    126Posts

    Re: Starting with....

    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 by 02goswej; 01-01-09 at 01:20 PM.

  6. #6
    The Dinosaur chumpywumpy is offline
    MemberRank
    Jun 2008 Join Date
    /f451/Location
    5,127Posts

    Re: Starting with....

    Quote Originally Posted by 02goswej View Post
    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 2Just 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.
    http://www.4gonline.co.uk/download/CabalToolz_beta2.rar

  7. #7
    Member Vip3ra is offline
    MemberRank
    Jul 2008 Join Date
    87Posts

    Re: Starting with....

    i think if you give to all chars class rank 11 as start...after doying first quest you will gain all special powers



Advertisement