I'm tryna do something with @skilllist_id that returns all skills based on player class(Job).
However, i get all skills including passives. I created a sample script that lists all skill that is an attack.
I get the result of 42 < Mammonite, 153 < Cart Revolution for blacksmith.
when i tried using a for loop and the menu will show up like this.
After selecting 42, it returns ID: 2 which is not the skill ID that i have selected.
Code Snippet:
getskilllist;
for(set .@i, 0; .@i < @skilllist_count; set .@i, .@i+1){
if (@skilllist_flag != NoDamage){
set .@menu$, .@menu$ + ":" + getskillname(@skilllist_id[.@i];
}
}
.@skillids = select(.@men$+":Cancel") -1; mes"Skill level to use:";
mes"["+ getskillstring(0,.@skillids) +"]"+" - Max lv : "+getskilllv(.@skillids);
Question
Johnson
I'm tryna do something with @skilllist_id that returns all skills based on player class(Job).


However, i get all skills including passives. I created a sample script that lists all skill that is an attack.
I get the result of 42 < Mammonite, 153 < Cart Revolution for blacksmith.
when i tried using a for loop and the menu will show up like this.
After selecting 42, it returns ID: 2 which is not the skill ID that i have selected.
Code Snippet:
if (@skilllist_flag != NoDamage){
set .@menu$, .@menu$ + ":" + getskillname(@skilllist_id[.@i];
}
}
mes "Skill level to use:";
in the array for @skilllist_id how does it get the skills and how will i remove the skills after setting it in select(.@men$)
Edited by khouuming21typo
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.