- Joined
- Dec 24, 2014
- Messages
- 53
- Reaction score
- 7
- First Language
- Croatian
- Primarily Uses
- RMMV
I'm doing a translation of a game and I run into a problem.
Inside a common event, there is a script call and all this code below is inside it.
I need to edit the text where "XYZ" is but I can't.
I can delete a character from the script but I can't add anything due to some script character limit.
I don't even know how he managed to put inside so many characters.
Half of the characters you can't even see when you edit the script.
Does anyone know how to do this?
for i in 0..$game_party.actors.size - 1
if $game_variables[27].include?("XYZ")
if $game_party.actors.id == 3
a = $game_variables[1]
hp = $game_party.actors.hp
maxhp = $game_party.actors.maxhp
$game_switches[100] = true if maxhp != hp
hpp = maxhp * $data_items[a].recover_hp_rate
hpp *= 0.01;hpp = hpp.to_i
$game_party.actors.hp += hpp
$game_switches[87] = true
end;end;end
Inside a common event, there is a script call and all this code below is inside it.
I need to edit the text where "XYZ" is but I can't.
I can delete a character from the script but I can't add anything due to some script character limit.
I don't even know how he managed to put inside so many characters.
Half of the characters you can't even see when you edit the script.
Does anyone know how to do this?
for i in 0..$game_party.actors.size - 1
if $game_variables[27].include?("XYZ")
if $game_party.actors.id == 3
a = $game_variables[1]
hp = $game_party.actors.hp
maxhp = $game_party.actors.maxhp
$game_switches[100] = true if maxhp != hp
hpp = maxhp * $data_items[a].recover_hp_rate
hpp *= 0.01;hpp = hpp.to_i
$game_party.actors.hp += hpp
$game_switches[87] = true
end;end;end
