Jump to content

Cebols

Members
  • Posts

    7
  • Joined

  • Last visited

Posts posted by Cebols

  1. 8 hours ago, n0tttt said:

    Change

    
    // Checks if the player can change to third class.
    // Note: This does not include the level checks.
    function	Can_Change_Third	{
    	// To change to third class you either need to be:
    	// * Second Class
    	// * Transcendent Second Class
    	// * Baby Second Class
    	if( !.ThirdClass )
    		return false; // Third job change disabled
    	if( !(eaclass()&EAJL_2) )
    		return false; // Not second Class
    	if( eaclass()&EAJL_THIRD )
    		return false; // Already Third Class
    	if( roclass(eaclass()|EAJL_THIRD) < 0 )
    		return false; // Job has no third Class
    	if( (eaclass()&EAJ_UPPERMASK) == EAJ_SUPER_NOVICE )
    		return false; // Exp. Super Novice equals 3rd Cls, but has it's own case
    	if( Is_Baby() && (!.BabyClass || !.BabyThird) )
    		return false; // No Baby (Third) change allowed
    	return true;
    }

    to:

    
    // Checks if the player can change to third class.
    // Note: This does not include the level checks.
    function	Can_Change_Third	{
    	// To change to third class you either need to be:
    	// * Second Class
    	// * Transcendent Second Class
    	// * Baby Second Class
    	if( !.ThirdClass )
    		return false; // Third job change disabled
    	if( !(eaclass()&EAJL_2) )
    		return false; // Not second Class
    	if( eaclass()&EAJL_THIRD )
    		return false; // Already Third Class
    	if( (eaclass()&EAJ_BASEMASK) == EAJ_TAEKWON )
    		return false; // No Star Emperor or Soul Reaper.
    	if( roclass(eaclass()|EAJL_THIRD) < 0 )
    		return false; // Job has no third Class
    	if( (eaclass()&EAJ_UPPERMASK) == EAJ_SUPER_NOVICE )
    		return false; // Exp. Super Novice equals 3rd Cls, but has it's own case
    	if( Is_Baby() && (!.BabyClass || !.BabyThird) )
    		return false; // No Baby (Third) change allowed
    	return true;
    }

     

    Thanks n0ttt that works...!

  2. On 11/28/2018 at 6:36 PM, Riel said:

    It's still nonexistent in rathena, only the job sprite support is available. It shouldn't be a problem even if you don't remove it at the moment

    bun from Jobchanger NPC still able to choose to change to this 2 type of jobs, and due my client not support it become job "poring"

    image.png.89b1ab766f7b675b2aa11d2fa7582a7e.png

    image.png.36f6de67e49181bb0ab6cbc6ed84aed6.png


    Thanks

     

  3. Hi Skymea,
    This alert is inform that your item in Quest don't have in your item database and the remove the quest / item list from server

    You need to list down all the item and check on you item database

    for map you need to check you map list or map cache

    hope it helps

×
×
  • Create New...