Jump to content
  • 0

Need help for Alchemist Skill


sakura125

Question


  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   0
  • Joined:  05/11/16
  • Last Seen:  

Hi. I am having a hard time fixing this issue, I am not sure whether it is client side or server side. I have tried fixing it with both ends but leads to no result. Can anyone help me please?

Even if it's used with the command @allskill the skill window won't update because of it homunculus is pretty much useless.

NOTE: Skill Point is 0 because of the command @allskill

 

image.png.c08684e9c1b7885a4ed277cad682802d.png

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  22
  • Reputation:   5
  • Joined:  02/22/22
  • Last Seen:  

The real reason is becasue these is not a base skills, you should get it by some queste, however you can use this comand to get those:

@questskill 238

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   0
  • Joined:  05/11/16
  • Last Seen:  

15 minutes ago, Hergel said:

The real reason is becasue these is not a base skills, you should get it by some queste, however you can use this comand to get those:

@questskill 238

 

is it possible to disable or rather not requiring the players to get the quest? just make it like a normal skill?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  22
  • Reputation:   5
  • Joined:  02/22/22
  • Last Seen:  

I believe it would be simpler to add an NPC that give to the players all those skills. For the Bioethics skill, you can use the following straightforward script:

prontera,140,180,4	script	Bioethics Granter	100 ,{
    if (BaseJob == Job_Alchemist || BaseJob == Job_Creator || BaseJob == Job_Genetic) { // Replace with correct job constants if needed
        if (getskilllv("AM_BIOETHICS")) {
            mes "You already have the Bioethics skill!";
            close;
        } else {
            mes "You are qualified to learn Bioethics.";
            mes "I will grant you this skill now.";
           skill "AM_BIOETHICS",1,SKILL_PERM; // Use the correct skill identifier and level
            close;
        }
    } else {
        mes "I'm sorry, but only Alchemists and their transcendent and third job forms can learn Bioethics.";
        close;
    }
}

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   0
  • Joined:  05/11/16
  • Last Seen:  

4 minutes ago, Hergel said:

I believe it would be simpler to add an NPC that give to the players all those skills. For the Bioethics skill, you can use the following straightforward script:

prontera,140,180,4	script	Bioethics Granter	100 ,{
    if (BaseJob == Job_Alchemist || BaseJob == Job_Creator || BaseJob == Job_Genetic) { // Replace with correct job constants if needed
        if (getskilllv("AM_BIOETHICS")) {
            mes "You already have the Bioethics skill!";
            close;
        } else {
            mes "You are qualified to learn Bioethics.";
            mes "I will grant you this skill now.";
           skill "AM_BIOETHICS",1,SKILL_PERM; // Use the correct skill identifier and level
            close;
        }
    } else {
        mes "I'm sorry, but only Alchemists and their transcendent and third job forms can learn Bioethics.";
        close;
    }
}

 

Ohh yes I did. I tried that but it still doesn't give the skill. It would still be greyed out. I even tried the client side. It's still the same 😕

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  22
  • Reputation:   5
  • Joined:  02/22/22
  • Last Seen:  

11 hours ago, sakura125 said:

Ohh yes I did. I tried that but it still doesn't give the skill. It would still be greyed out. I even tried the client side. It's still the same 😕

 

Did works with @questskill 238 ?  I can change the script to use this comand, also make sure your basic skills is at least level 9 to can up those skills

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   0
  • Joined:  05/11/16
  • Last Seen:  

On 11/5/2023 at 10:31 AM, Hergel said:

Did works with @questskill 238 ?  I can change the script to use this comand, also make sure your basic skills is at least level 9 to can up those skills

 

Hi. I think there's an issue when getting a Platinum Skill. Most of the Trans Job (I think) doesn't get their respective Platinum Skills.

EDIT:

image.png.c291df7c4e23a18fa489ca4947b99a65.png

 

It seems like it only gives on 1st Job Classes only. I wonder what's the problem with this. The script is using the default one (mazvi).

 

Edited by sakura125
Forgot to add the requested command.
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   0
  • Joined:  05/11/16
  • Last Seen:  

I have managed to fix it by using an older version of Platinum Skill. The global function doesn't seem to work well on my end (probably due to my stupidity).

@Hergel: Thank you so much for your help and tips. I have pinpointed the issue and got it fixed now.



SOLVED!

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  22
  • Reputation:   5
  • Joined:  02/22/22
  • Last Seen:  

6 hours ago, sakura125 said:

I have managed to fix it by using an older version of Platinum Skill. The global function doesn't seem to work well on my end (probably due to my stupidity).

@Hergel: Thank you so much for your help and tips. I have pinpointed the issue and got it fixed now.



SOLVED!

Glad to heard that, that's the important, good luck.

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...