Cabaltoolz 3.1 + fixes

Page 1 of 3 123 LastLast
Results 1 to 25 of 71
  1. #1
    All CHAOS! X_Sarah_X is offline
    MemberRank
    Jul 2009 Join Date
    BeachLocation
    630Posts

    Cabaltoolz 3.1 + fixes

    Hi everyone,

    I recently jumped into Cabal Online private server development and have spent some time on Cabaltoolz 3.1

    The installation from the sticky had some bugs here and there and I am hereby releasing the cabaltoolz 3.1 how I use it myself.

    I have john_d's permission to release this.
    All credits go to:

    john_d for coding CabalToolz 3.1
    RaGEZONE Cabal Development for providing ways to fix the minor bugs.

    All fixes have been made by browsing RaGEZONE and searching through threads for ways to fix it, and a little bit of common sense ;)


    Download: cabaltoolz_fixed.rar

    Last edited by X_Sarah_X; 23-07-10 at 07:40 PM.


  2. #2
    0x1F0FFF TanGzkie is offline
    MemberRank
    Sep 2008 Join Date
    loc => {p => o}Location
    987Posts

    Re: Cabaltoolz 3.1 + fixes

    Also the Reset system on it fixed..??

    EDIT
    Testing the Reset System..

  3. #3
    All CHAOS! X_Sarah_X is offline
    MemberRank
    Jul 2009 Join Date
    BeachLocation
    630Posts

    Re: Cabaltoolz 3.1 + fixes

    If executed the MSSQL queries in the readme.txt, Resetting works fine.

    Just tested it myself and works as a charm :)

  4. #4
    Alpha Member john_d is offline
    MemberRank
    Feb 2004 Join Date
    PhilippinesLocation
    2,868Posts

    Re: Cabaltoolz 3.1 + fixes

    good job.
    btw: the reason the reset system is bugged is because all my clients always have a different reset settings for their servers or how they want it to work. so i never bothered making a universal one.

  5. #5
    0x1F0FFF TanGzkie is offline
    MemberRank
    Sep 2008 Join Date
    loc => {p => o}Location
    987Posts

    Re: Cabaltoolz 3.1 + fixes

    the only BUG in reset system is that the max reset cannot hold it when the players go to the Reset panel players will still reset even though they
    has the limit of reset..

  6. #6
    All CHAOS! X_Sarah_X is offline
    MemberRank
    Jul 2009 Join Date
    BeachLocation
    630Posts

    Re: Cabaltoolz 3.1 + fixes

    I was just thinking...
    You know where the website checks your level and it decides wether to show the reset button or not depending on your character level?

    Shouldn't it be possible to let it search on both your level and your amount of resets?

    Like the reset button only shows if your level is the level requirement set in the config AND your resets is NOT equal or bigger than your reset limit set in your config?

    I will look into it myself for sure. It should be possible.

  7. #7
    Alpha Member john_d is offline
    MemberRank
    Feb 2004 Join Date
    PhilippinesLocation
    2,868Posts

    Re: Cabaltoolz 3.1 + fixes

    Quote Originally Posted by X_Sarah_X View Post
    I was just thinking...
    You know where the website checks your level and it decides wether to show the reset button or not depending on your character level?

    Shouldn't it be possible to let it search on both your level and your amount of resets?

    Like the reset button only shows if your level is the level requirement set in the config AND your resets is NOT equal or bigger than your reset limit set in your config?

    I will look into it myself for sure. It should be possible.
    easy as pie
    open usercp.php

    find:
    PHP Code:
    if ($c['LEV'] >= $_config['ucp_lvl_level'] &&  ) 
    change into

    PHP Code:
    if ($c['LEV'] >= $_config['ucp_lvl_level'] && $c[$_config['ucp_lvl_col']] < $_config['ucp_lvl_limit'] ) 

  8. #8
    Banned Yamachi is offline
    BannedRank
    Oct 2006 Join Date
    Jolly EnglandLocation
    3,517Posts

    Re: Cabaltoolz 3.1 + fixes

    I'm afraid you're going to have to either relocate the Live Demo to another site, or remove that link, as it's considered server advertisement.

    @John: not on MSN?
    Last edited by Yamachi; 23-07-10 at 02:06 PM.

  9. #9
    Alpha Member john_d is offline
    MemberRank
    Feb 2004 Join Date
    PhilippinesLocation
    2,868Posts

    Re: Cabaltoolz 3.1 + fixes

    Quote Originally Posted by Yamachi View Post
    I'm afraid you're going to have to either relocate the Live Demo to another site, or remove that link, as it's considered server advertisement.

    @John: not on MSN?
    hihihi didn't notice it was off ^^

  10. #10
    0x1F0FFF TanGzkie is offline
    MemberRank
    Sep 2008 Join Date
    loc => {p => o}Location
    987Posts

    Re: Cabaltoolz 3.1 + fixes

    @X_Sarah_X

    ;/ too bad.. not working it can still reset
    even i set it to max reset 3...

    ---------- Post added at 01:13 PM ---------- Previous post was at 01:09 PM ----------

    Quote Originally Posted by john_d View Post
    easy as pie
    open usercp.php

    find:
    PHP Code:
    if ($c['LEV'] >= $_config['ucp_lvl_level'] &&  ) 
    change into

    PHP Code:
    if ($c['LEV'] >= $_config['ucp_lvl_level'] && $c[$_config['ucp_lvl_col']] < $_config['ucp_lvl_limit'] ) 
    Work Sir Thank you so much... :)

  11. #11
    All CHAOS! X_Sarah_X is offline
    MemberRank
    Jul 2009 Join Date
    BeachLocation
    630Posts

    Re: Cabaltoolz 3.1 + fixes

    Quote Originally Posted by Yamachi View Post
    I'm afraid you're going to have to either relocate the Live Demo to another site, or remove that link, as it's considered server advertisement.

    @John: not on MSN?
    Removed link. Apologies.

    Would a screenshot of the website be allowed, though?

  12. #12
    Banned Yamachi is offline
    BannedRank
    Oct 2006 Join Date
    Jolly EnglandLocation
    3,517Posts

    Re: Cabaltoolz 3.1 + fixes

    Quote Originally Posted by X_Sarah_X View Post
    Removed link. Apologies.

    Would a screenshot of the website be allowed, though?
    Yes, a screenshot would be fine :P

  13. #13
    Apprentice dendater is offline
    MemberRank
    Jun 2010 Join Date
    LatviaLocation
    6Posts

    Re: Cabaltoolz 3.1 + fixes

    News still don't work for me , even i changer "forum link" to my forum ip...
    Cannot connect to the database because: Can't connect to MySQL server on '***********' (10061)

  14. #14
    All CHAOS! X_Sarah_X is offline
    MemberRank
    Jul 2009 Join Date
    BeachLocation
    630Posts

    Re: Cabaltoolz 3.1 + fixes

    If news doesn't work you haven't set up your forum right.
    Hint: News uses RSS feed (in my case at least)

  15. #15
    Apprentice dendater is offline
    MemberRank
    Jun 2010 Join Date
    LatviaLocation
    6Posts

    Re: Cabaltoolz 3.1 + fixes

    i'm just editing @ config "forum_link" and "forum_feed" in both i pasted my news link, so i did wrong? or i must change "forum IP" in /mdls/frontpage.php?

    Oh, and how i can edit server stats (exp , drop) i'm editing config , but nothing happens
    Last edited by dendater; 31-07-10 at 05:40 PM.

  16. #16
    All CHAOS! X_Sarah_X is offline
    MemberRank
    Jul 2009 Join Date
    BeachLocation
    630Posts

    Re: Cabaltoolz 3.1 + fixes

    Quote Originally Posted by dendater View Post
    i'm just editing @ config "forum_link" and "forum_feed" in both i pasted my news link, so i did wrong? or i must change "forum IP" in /mdls/frontpage.php?

    Oh, and how i can edit server stats (exp , drop) i'm editing config , but nothing happens
    did you edit the "server_feed" in your config?

    If not it will read all information such as server stats from my website.

  17. #17
    Apprentice dendater is offline
    MemberRank
    Jun 2010 Join Date
    LatviaLocation
    6Posts

    Re: Cabaltoolz 3.1 + fixes

    Quote Originally Posted by X_Sarah_X View Post
    did you edit the "server_feed" in your config?

    If not it will read all information such as server stats from my website.
    Ok , all works , thanks , but what about news page?

  18. #18
    All CHAOS! X_Sarah_X is offline
    MemberRank
    Jul 2009 Join Date
    BeachLocation
    630Posts

    Re: Cabaltoolz 3.1 + fixes

    Quote Originally Posted by dendater View Post
    Ok , all works , thanks , but what about news page?
    The newspage works with RSS Feed from a vbulletin forum.
    The connection information for the vbulletin forum is in the frontpage.php

  19. #19
    Apprentice VisionaresRs is offline
    MemberRank
    Dec 2008 Join Date
    14Posts

    Re: Cabaltoolz 3.1 + fixes

    How to reset the status of the character? points?

  20. #20
    Alpha and Omega Xc0deRed93 is offline
    MemberRank
    Jul 2010 Join Date
    331Posts

    Re: Cabaltoolz 3.1 + fixes

    what about creating new layout, new look and interface website?

  21. #21
    All CHAOS! X_Sarah_X is offline
    MemberRank
    Jul 2009 Join Date
    BeachLocation
    630Posts

    Re: Cabaltoolz 3.1 + fixes

    Quote Originally Posted by VisionaresRs View Post
    How to reset the status of the character? points?
    Resets are possible through the User Panel, obviously.

    Quote Originally Posted by prime23 View Post
    what about creating new layout, new look and interface website?
    I'm not a webdesigner...i fixed some bugs and felt like it could help out some people to release it, if you want a custom design you'll have to create it yourself.

  22. #22
    Apprentice VisionaresRs is offline
    MemberRank
    Dec 2008 Join Date
    14Posts

    Re: Cabaltoolz 3.1 + fixes

    Guess you did not quite understand. I wish funcionac as follows, where char and would like to reset the points that are resetace it too!
    The more points you earn to add dobracem each reset.
    Example: Reset a 100 points, 200 points 2 resets is yes on, Could anyone help me?

  23. #23
    All CHAOS! X_Sarah_X is offline
    MemberRank
    Jul 2009 Join Date
    BeachLocation
    630Posts

    Re: Cabaltoolz 3.1 + fixes

    Quote Originally Posted by VisionaresRs View Post
    Guess you did not quite understand. I wish funcionac as follows, where char and would like to reset the points that are resetace it too!
    The more points you earn to add dobracem each reset.
    Example: Reset a 100 points, 200 points 2 resets is yes on, Could anyone help me?
    After trying for 10 minutes to translate this horrible piece of english...I assume you mean every reset gives you a different amount of stat points?

    Good luck coding it.

    Like I said before, I'm no PHP Coder, nor a webdesigner...it's not my product, it's a re-release with a few fixes which i found all over RaGEZONE.

    Dont bug me with php coding.

  24. #24
    0x1F0FFF TanGzkie is offline
    MemberRank
    Sep 2008 Join Date
    loc => {p => o}Location
    987Posts

    Re: Cabaltoolz 3.1 + fixes

    He means that

    in the First Reset Player's will get 100 points
    then second reset will be 200 points

    Ahmn.. in my understanding hes want's
    a 2x reset like 1=100 2=200 3=300 <--- hint better use codes Visionaires if you want to have this kind of system :D

    Regardz,
    TanGzkie
    Last edited by TanGzkie; 04-08-10 at 06:34 PM.

  25. #25
    Account Upgraded | Title Enabled! maggieta2 is offline
    MemberRank
    Jun 2006 Join Date
    cqwcqcwLocation
    211Posts

    Re: Cabaltoolz 3.1 + fixes

    :S:S:S help i update the database, and this error show me in the page :S:S

    Call to a member function children() on a non-object in C:\xampp\htdocs\Pagina\modules\mod.servstats.php on line 29



Page 1 of 3 123 LastLast

Advertisement