Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Thanks! Weird, I saw multiple posts on RPG Maker forum saying it was the wrong one that I had. I thought I was going crazy when it wouldn't work right. Would you know how I could incorporate a variable to pull certain images? Like if I wanted it to pull images like "Gacha[Variable52].png" so I can set a variable to pull Gacha1.png, Gacha2.png, etc with the same variable.
I'm trying
$game_map.screen.pictures[1].show('Gacha' + $game_variables[52], 0, 0, 0, 100,
100, 255, 0)
But I keep getting
Script 'Game_Interpreter' line 1411: TypeError occurred.
can't convert Fixnum into String
EDIT: Nevermind, got it working by adding ".to_s" after the variable. Don't know much about Ruby coding and didn't realize it can't casually reference variables like that in string without some extra steps.
$game_map.screen.pictures[2].show('Gacha' + $game_variables[52].to_s, 0, 50, 0, 100,
100, 255, 0)