Not really a help thread, more something out of curiosity

Results 1 to 4 of 4
  1. #1
    Account Upgraded | Title Enabled! xSpeedx is offline
    MemberRank
    Jul 2016 Join Date
    355Posts

    Not really a help thread, more something out of curiosity

    When I discovered that 1.69 client thread, I was wondering... If I were to make a new character, select Delia, skip the tutorial quest to directly end up on Tieve's tavern, would there be a way to copy all the quest progress from my current level 43 main char over to the freshly created Delia?

    Or if that's not possible, can one duplicate a character and change the duplicate into a Delia? Or any class for that matter.

    I remember that some quests used to unlock special skills or something, so I'm not exactly sure if one could do that.


  2. #2
    Alpha Member john007 is offline
    MemberRank
    Dec 2005 Join Date
    In MarsLocation
    2,341Posts

    Re: Not really a help thread, more something out of curiosity

    Delia doesn't work for our server files yet. We just have to wait until some smart guys can use the newer bin that supports her.

  3. #3
    Account Upgraded | Title Enabled! xSpeedx is offline
    MemberRank
    Jul 2016 Join Date
    355Posts

    Re: Not really a help thread, more something out of curiosity

    Quote Originally Posted by john007 View Post
    Delia doesn't work for our server files yet. We just have to wait until some smart guys can use the newer bin that supports her.
    I know but the thought doesn't only apply to the new character, instead to the concept in general. I'd also ask this if I wanted to have a Fiona with the game progress of my main Vella.

    PS:
    I also like learning more about the mechanics of how the databases work with the game.

  4. #4
    Valued Member dontknown is offline
    MemberRank
    Mar 2012 Join Date
    128Posts

    Re: Not really a help thread, more something out of curiosity

    It's very easy to switch class. Let's say you have a lynn and you want to become a fiona, preserving everything.

    1º Create a fiona ingame, just remember the name.

    2º Now we need a fake ID to swap things. Go to dbo.Character and create a row with ID 777.

    3º Set the names of the 2 characters and run this query (change originalChar and newChar with the names):

    Code:
    DECLARE @player1 bigint = (SELECT ID FROM dbo.CharacterInfo WHERE Name LIKE 'originalChar'); 
    DECLARE @Player2 bigint = (SELECT ID FROM dbo.CharacterInfo WHERE Name LIKE 'newChar'); 
    UPDATE dbo.Costume SET CID = 777 WHERE CID = @player1;
    UPDATE dbo.Costume SET CID = @player1 WHERE CID = @Player2;
    UPDATE dbo.Costume SET CID = @Player2 WHERE CID = 777;
    UPDATE dbo.Skill SET CID = 777 WHERE CID = @player1;
    UPDATE dbo.Skill SET CID = @player1 WHERE CID = @Player2;
    UPDATE dbo.Skill SET CID = @Player2 WHERE CID = 777;
    4º Now go to dbo.CharacterCostume and change the class, level and AP of the desired character.

    Done! That way you preserve items and quest, while losing appearance and skills.



Advertisement