Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×

Help to macro : adding skills in test

Hello everyone ! I need to know if is it possible to show the result of a test with macro, exemple : My character skills is Strenght 50 and Melee 15 My maccro : [[1d100]] / @{Strength}+@{Melee} Showing in chat : 45 / 50+15 My need : 45 / 65 (this is a custom RPG with d100 system) Please, anyone know how to make this ? :) A noob in roll20
[[1d100]] / [[@{Strength}+@{Melee}]]
I'm using the Palladium Rifts character sheet. There is no built in skill checks. Is there a way to pull the field that has the value of the skill. I tried to look at the coding of the sheet. The value is the same name for all, but it is build into a grouping for the skill itself. Do I have to reference the skill value field to get the percentage value field into a macro? I did go to the attributes & abilities tab and added an attribute and called it the skill. I was able to enter this into a macro, but I don't want to enter every skill and update the value at every level when it is already on the character sheet. I understand the character sheet wasn't built with a lot of in-depth coding, but I would like to make things a little easier and I know Rifts doesn't get the high usage of D&D/Pathfinder. I appreciate any help you can give.
Thank yoàu so much for your reply ! Another question :i want to add one skill to the roll, but that doesn't work : [[1d100]] / [[?{Chose your skill|@{skill1}:@{bonus1}|@{skill2}:@{bonus2}|@{skill3}:@{bonus3}|@{skill4}:@{bonus4}}+@{strenght}]]
1585729726
Ziechael
Forum Champion
Sheet Author
API Scripter
You need to use commas instead of colons to separate your query options: [[1d100]] / [[?{Chose your skill|@{skill1},@{bonus1}|@{skill2},@{bonus2}|@{skill3},@{bonus3}|@{skill4},@{bonus4}}+@{strength}]]
1585730301
GiGs
Pro
Sheet Author
API Scripter
Stuart N. said: I'm using the Palladium Rifts character sheet. There is no built in skill checks. Is there a way to pull the field that has the value of the skill. I tried to look at the coding of the sheet. The value is the same name for all, but it is build into a grouping for the skill itself. Do I have to reference the skill value field to get the percentage value field into a macro? I did go to the attributes & abilities tab and added an attribute and called it the skill. I was able to enter this into a macro, but I don't want to enter every skill and update the value at every level when it is already on the character sheet. I understand the character sheet wasn't built with a lot of in-depth coding, but I would like to make things a little easier and I know Rifts doesn't get the high usage of D&D/Pathfinder. I appreciate any help you can give. You'd be better off creating another thread for questions like this.
Awesome! Thank you very much :)