03-13-2011, 04:46 AM
Well, if you wanted to add skills to an actor based on their actor ID, you can use:
Where the ID is the id of the actor in the database, and the value is... the value.
So
Would add 50 points to Aluxes's points
[center]* * *[[center]
Or you can add points to an member of your party, like"
Pretty much the same, but the ID represents the index of the party (0 = party leader, 1 = 2nd party member, etc...)
So
Would remove 20 points from Basil's point total.
Code:
$game_actors[id].skillpoints += valueSo
Code:
$game_actors[1].skillpoints += 50[center]* * *[[center]
Or you can add points to an member of your party, like"
Code:
$game_party.actors[id].skillpoints += valueSo
Code:
$game_party.actors[1].skillpoints -= 20
![[Image: QrnbKlx.jpg]](https://i.imgur.com/QrnbKlx.jpg)
![[Image: sGz1ErF.png]](https://i.imgur.com/sGz1ErF.png)
![[Image: liM4ikn.png]](https://i.imgur.com/liM4ikn.png)
![[Image: fdzKgZA.png]](https://i.imgur.com/fdzKgZA.png)
![[Image: sj0H81z.png]](https://i.imgur.com/sj0H81z.png)
![[Image: QL7oRau.png]](https://i.imgur.com/QL7oRau.png)
![[Image: uSqjY09.png]](https://i.imgur.com/uSqjY09.png)
![[Image: GAA3qE9.png]](https://i.imgur.com/GAA3qE9.png)
![[Image: 2Hmnx1G.png]](https://i.imgur.com/2Hmnx1G.png)
![[Image: BwtNdKw.png%5B]](https://i.imgur.com/BwtNdKw.png%5B)