I'm trying to edit scripts for myself, and so far everything is going quite smoothly. I know very little about scripting, and I believe I have gotten quite far with my rather impressive lack of knowledge.
Heres the situation, I'm editing my menu system so that at the bottom of the menu->status you would see the players evasion. Its all set up and working, but I would like the evasion value to read as a number and a percentage sign. I figured that making a string would work, but this doesnt seem to be the case.
When adding the evasion I had to add another number in window_base for it to be called properly, so it looks like this:
This comes out fine and dandy save for that I get the straight value and not with a pretty % sign afterwords. Ive tried stringing it but it keeps yelling at me for improper syntax or something else. thoughts?
Heres the situation, I'm editing my menu system so that at the bottom of the menu->status you would see the players evasion. Its all set up and working, but I would like the evasion value to read as a number and a percentage sign. I figured that making a string would work, but this doesnt seem to be the case.
When adding the evasion I had to add another number in window_base for it to be called properly, so it looks like this:
Code:
  when 7
   parameter_name = "Evasion"
   parameter_value = actor.eva
This comes out fine and dandy save for that I get the straight value and not with a pretty % sign afterwords. Ive tried stringing it but it keeps yelling at me for improper syntax or something else. thoughts?