Thread: DeltaClean & Galkon Refactored

Results 1 to 9 of 9
  1. #1 DeltaClean & Galkon Refactored 
    heavenshallburn
    Guest
    How can I make Galkon Refactored (474lookalike) work with DeltaClean?

    When I login it auto logs me out
    Reply With Quote  
     

  2. #2  
    Registered Member wubaz's Avatar
    Join Date
    Jan 2009
    Posts
    191
    Thanks given
    8
    Thanks received
    3
    Rep Power
    1
    You probably get the T2 error, right? Cause there is multiple solutions by using the 'Search' button.

    Play now!
    Reply With Quote  
     

  3. #3  
    heavenshallburn
    Guest
    Idk I think it has to do with headicons


    EDIT :: Yes I get T2 error
    Reply With Quote  
     

  4. #4  
    Registered Member

    Join Date
    Sep 2008
    Posts
    2,219
    Thanks given
    148
    Thanks received
    204
    Rep Power
    1570
    in your player class replace the headIcon variable with -1, add skullIcon and hintIcon with a value of -1 while you're at it. then just add the skullIcon and hintIcon down under player updating (hint: look for headIcon again, then just copy that)



    Reply With Quote  
     

  5. #5  
    heavenshallburn
    Guest
    I got this

    Code:
    	// /dueling
    	public int headIcon = 1 & 1 >> 2;
    and this
    Code:
    		// TODO: yet some things to figure out on this block + properly
    		// implement
    		// this
    		playerProps.writeByte(pGender);
    		// player gender. 0=Male and 1=Female
    		playerProps.writeByte(headIcon);
    		// playerProps.writeByte(headIconPk);
    		// playerStatusMask - skull, prayers etc alkup 0
    
    		// defining the character shape - 12 slots following - 0 denotes a null
    		// entry and just a byte is used
    		// slot 0,8,11,1 is head part - missing additional things are beard and
    		// eyepatch like things either 11 or 1
    		// cape, apron, amulet... the remaining things...
    When I search for ''HEADICON''
    Reply With Quote  
     

  6. #6  
    Registered Member
    Division's Avatar
    Join Date
    Dec 2009
    Age
    29
    Posts
    2,208
    Thanks given
    41
    Thanks received
    78
    Rep Power
    97
    make sure this is declared in player.java
    public int skulls = 0;
    public int hint = 0;
    public int headIcon = 0;
    then search for "playerProps.writeByte(headIcon);"
    put this under it:
    playerProps.writeByte(skulls);
    playerProps.writeByte(hint);
    That are the 2 bytes needed for delta to run
    correct me if im wrong
    Reply With Quote  
     

  7. #7  
    heavenshallburn
    Guest
    Tyvm but I get this:

    Reply With Quote  
     

  8. #8  
    heavenshallburn
    Guest
    Fixed username/character/combat

    Only problem: When login it shows PK and Protect From Melee headicon
    Reply With Quote  
     

  9. #9  
    Registered Member

    Join Date
    Sep 2008
    Posts
    2,219
    Thanks given
    148
    Thanks received
    204
    Rep Power
    1570
    Quote Originally Posted by mhm <3 View Post
    Tyvm but I get this:

    public int headIcon = -1, skullIcon = -1, hintIcon = -1;



    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •