Hi! Welcome to the forum for Platinum Arts Sandbox Free 3D Game Maker. I currently have the forums locked as I am attempting to properly update them.

In the meantime please join the new Discord Server!

If you have any questions please e-mail me through the Platinum Arts website.

Rpg skill increase script help 2.8

Chat and ask questions about the RPG Maker Mode here.
Post Reply
User avatar
Sircameron
Member
Member
Posts: 62
Joined: March 6th, 2012, 9:13 pm
Name: Cameron
Location: Indiana

Rpg skill increase script help 2.8

Post by Sircameron »

So this code doesnt work and i cant figure out how to do a skill increase in a script..

Code: Select all

r_set_skill $SKILL_DIPLOMACY (+ (r_get_skill $SKILL_DIPLOMACY) 1)
ive tried this and many other ways and still cant figure it out.. If anyone can show me what im doing wrong that'd be awesome thanks
Hirato
Developer
Developer
Posts: 689
Joined: May 30th, 2009, 1:23 pm
IRC Username: hirato

Re: Rpg skill increase script help 2.8

Post by Hirato »

Code: Select all

r_select_char ref [
    r_char_base_diplomacy (+ (r_char_base_diplomacy_get) 1)
]
This is not a url, clicking it is pointless
User avatar
Sircameron
Member
Member
Posts: 62
Joined: March 6th, 2012, 9:13 pm
Name: Cameron
Location: Indiana

Re: Rpg skill increase script help 2.8

Post by Sircameron »

"Unable to select reference ref type as char"
**Edit**
got it to work using

Code: Select all

r_select_char actor [ ]
thanks for the help! :)
Post Reply