I am using Rpg maker xp on a windows 7 laptop. Heres my problem: In my beggining part you choose your gender, class and name but heres the problem, when I got into a battle about 10 minutes ago everytime I used a regular attack it does 0 damage but when you use fire/crosscut it does regular damage. When I'm testing it usually I don't go through the beggining so I can't remember if this has happened before.. I have though about making 4 characters (male+female warrior and male+female mage) but doesn't that mean I'll have to rewrite all my text spots that say \n[1]? Or does \n[1] command work for the first person in the party? In that case everything would be fine I would just have to rewrite my beggining bit. :???:
HELP
Actually it chooses the first actor in the list so is there a way to make for example Cyrus or Basil the first character in the list through an event? I guess I could just have preset names but I hate games that do that.
From my standpoint it looks like you want to display other characters names in text?
If so, all you have to do is replace the number 1 in \n[1] with the number of that character in the database.
Also, when you do regular attacks, it could be the settings you have for the character's default stats or weapons.
Sorry if this doesn't help you. =/
Quote from: Cait Sith on July 15, 2010, 12:37:17 pm
From my standpoint it looks like you want to display other characters names in text?
If so, all you have to do is replace the number 1 in \n[1] with the number of that character in the database.
Also, when you do regular attacks, it could be the settings you have for the character's default stats or weapons.
Not quite :roll:
Just use this script call for the name prob:
$game_variables[1] = $game_party.actors[0].name
Then in a message command, just use \v[1] and it will display the name of whoever the party leader is.
You can change the class through an event command (I think), so you just have to change the class. There's also an event command to change the actor name.
Quote from: shadeo11 on July 15, 2010, 12:22:20 pm
I am using Rpg maker xp on a windows 7 laptop. Heres my problem: In my beggining part you choose your gender, class and name but heres the problem, when I got into a battle about 10 minutes ago everytime I used a regular attack it does 0 damage but when you use fire/crosscut it does regular damage. When I'm testing it usually I don't go through the beggining so I can't remember if this has happened before.. I have though about making 4 characters (male+female warrior and male+female mage) but doesn't that mean I'll have to rewrite all my text spots that say \n[1]? Or does \n[1] command work for the first person in the party? In that case everything would be fine I would just have to rewrite my beggining bit. :???: HELP
Are you sure you have a weapon equipped? If you have no weapon, regular attacks will always do 0 damage.