Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 03/29/20 in all areas

  1. 1 point
    meko

    Need help about advanced stylist

    pow() has been replaced by the exponentiation operator (x ** y), see here: In your case you would need to do these changes: // change this set .@num$, .@num % pow(10,.@i+1) / pow(10,.@i) + .@num$; // to this: .@num$ = .@num % (10 ** (.@i + 1)) / (10 ** .@i) + .@num$;
  2. 1 point
    Kenpachi

    How to check Skill ID's Client-Side

    Hi. Client-side the skill IDs are defined in skillid.lub. ~Kenpachi
  3. 1 point
    Kuya Jeo

    3rd Job Max Level Aura to Trans Job

    check on official kRO files, (data.grf)
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.