Jump to content
  • 0

Done Setting up my fully working pre-renewal server


kaitogashi418

Question


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.05
  • Content Count:  15
  • Reputation:   0
  • Joined:  11/06/24
  • Last Seen:  

so im done with setting up my server from

rAthena -> SQL -> Client Side -> Setting rAthena for Pre-Renewal

now im in the customization part.

I have figure out how to make custom cards / items

now what im trying to do is implement some specific stuffs from renewal... is there any way to implement skills ( not the job ) but specific skills only from 3rd & 4th job from renewal to pre-renewal server? thank you very much for those who will answer.

been browsing for like 5 hours now all i can see is that 3rd and 4th job is disabled in pre-renewal but i really dont want the 3rd and 4th job itself i just want some specific skills to be implement to some items when the players wear that item. or add it to my database so i can give some world boss that ill be customizing some 3rd / 4th job skills. Thanks for those who will answer.

Edited by kaitogashi418
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  47
  • Reputation:   3
  • Joined:  05/04/14
  • Last Seen:  

The only thing I ever did to get all the 4th jobs from re to pre-re was just copy and paste everything from the 4th jobs into my import skill.db file and made sure that they appear in the skilltree.yml.

example:
  - Id: 5287
    Name: SHC_SAVAGE_IMPACT
    Description: Savage Impact
    MaxLevel: 10
    Type: Weapon
    TargetType: Attack
    DamageFlags:
      Splash: true
      Critical: true
    Range: 7
    Hit: Multi_Hit
    HitCount: 3
    Element: Weapon
    GiveAp: 2
    SplashArea:
      - Level: 1
        Area: 2
      - Level: 2
        Area: 2
      - Level: 3
        Area: 2
      - Level: 4
        Area: 2
      - Level: 5
        Area: 2
      - Level: 6
        Area: 3
      - Level: 7
        Area: 3
      - Level: 8
        Area: 3
      - Level: 9
        Area: 3
      - Level: 10
        Area: 3
    CastCancel: true
    AfterCastActDelay: 300
    Cooldown: 700
    Requires:
      SpCost:
        - Level: 1
          Amount: 45
        - Level: 2
          Amount: 48
        - Level: 3
          Amount: 51
        - Level: 4
          Amount: 54
        - Level: 5
          Amount: 57
        - Level: 6
          Amount: 60
        - Level: 7
          Amount: 63
        - Level: 8
          Amount: 66
        - Level: 9
          Amount: 69
        - Level: 10
          Amount: 72
      Weapon:
        Katar: true

put this at the bottom of your pre-renewal skill.db file and then make sure it shows up in the skilltree for example: assassin

image.png.029b365fd8d9e1afad0a307403e380a0.png
I removed the requirements for the skill so I can get it with @skillall

image.thumb.png.15f852e9c9c9211bbf42995fed60ff50.png

and again make sure that you have the cliendside for the skill otherwise it will glitch out. Thats all you should have to do to get the skill working for your class.

if its still not working after that it might have to do with the version of rAthena you are using and if the 4th job skills are in there or not.

If that still doesnt fix it then I can't help you, sorry 😞

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  47
  • Reputation:   3
  • Joined:  05/04/14
  • Last Seen:  

So the basic difference between pre-renewal and renewal is what stuff of the code and which databases the server uses and which not. you can copy past anything from renewal over to pre-renewal but you gotta make sure that you copy paste EVERYTHING it needs. If you use renewal Mobs you need to make sure that their defense is pre-renewal. The reason 3rd and 4th jobs are "locked out" of pre-renewal is because they are not in the Skill.db and Skilltree.db that Pre-renewal uses. you can copy and paste them into the import folder skilldb/skilltree and they should work fine. You also need to make sure that your clientside files have them.
image.png.2f3e5beb29611a455f48dba9671db3a6.png

All of these need to have 3rd and 4th jobs for them to actually show up in your client. you can get these from IIChrisII translation project.

If you want instances or npc/quests copied over, you need to make sure that all quests are in your pre-renewal database and also all monsters that the quest/dungeon/instance actually uses in your mob.db.

A lot of skill changes in the source are just a difference between #ifdef RENEWAL or #ifndef RENEWAL to differenciate between when its used in renewal and when not.

One of the bigger diffences for renewal and pre-renewal are the formulas for stats such as DEF and MDEF, ASPD and a few others. Fixed Cast time is also renewal only but you can activate it with a few changes to the source.


TL'DR nothing is really "disabled" for renewal, its just not in there. a lot of Copy Pasta

good luck!

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.05
  • Content Count:  15
  • Reputation:   0
  • Joined:  11/06/24
  • Last Seen:  

5 hours ago, b1rbert said:

So the basic difference between pre-renewal and renewal is what stuff of the code and which databases the server uses and which not. you can copy past anything from renewal over to pre-renewal but you gotta make sure that you copy paste EVERYTHING it needs. If you use renewal Mobs you need to make sure that their defense is pre-renewal. The reason 3rd and 4th jobs are "locked out" of pre-renewal is because they are not in the Skill.db and Skilltree.db that Pre-renewal uses. you can copy and paste them into the import folder skilldb/skilltree and they should work fine. You also need to make sure that your clientside files have them.
image.png.2f3e5beb29611a455f48dba9671db3a6.png

All of these need to have 3rd and 4th jobs for them to actually show up in your client. you can get these from IIChrisII translation project.

If you want instances or npc/quests copied over, you need to make sure that all quests are in your pre-renewal database and also all monsters that the quest/dungeon/instance actually uses in your mob.db.

A lot of skill changes in the source are just a difference between #ifdef RENEWAL or #ifndef RENEWAL to differenciate between when its used in renewal and when not.

One of the bigger diffences for renewal and pre-renewal are the formulas for stats such as DEF and MDEF, ASPD and a few others. Fixed Cast time is also renewal only but you can activate it with a few changes to the source.


TL'DR nothing is really "disabled" for renewal, its just not in there. a lot of Copy Pasta

good luck!

i was able to get the gist of it... i tried transferring over the savage impact skill and make it useable through a card ( for testing purposes ) but the thing is it's not working im having this error on my end.

can you help me with this? i did lots of research but i guess im stuck its really sucks for me to ask you of this but can you give me example as for how to completely transfer over 1 skill from 4th job to Pre_Renewal?
also btw 3rd job skills works fine i dont need to do anything

 

errors im getting

image.thumb.png.0fa58e518fb18f98389f8905cb913065.png

image.png.11b729c4012873b31025d2ad5f8c51df.png

I was able to make the 3rd job skills work since i dont need to change anything as they are implemente already in the skill db on pre-renewal folder

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...