You probably tried using a Vocab translation to English from Kies.XFallSeane escreveu:I have transfer my maps into news ND files i have get a new error
[FIXE]
Change in Windows Option L17 to
- Código:
draw_title(Vocab::OPTION)
and Scene_map L17 to
- Código:
@options_icon = Icon.new(nil, 742, 575, 'Options', '', ["#{Vocab::OPTION} (O)"]) { $windows[:option].trigger }
This problem here was "s" at "option".
When server is offline i have this error :
Use this:
- Código:
#==============================================================================
# ** Vocab
#------------------------------------------------------------------------------
# Este módulo trata do vocabulário.
#------------------------------------------------------------------------------
# Autor: Valentine
#==============================================================================
module Vocab
# Entrada e registro
USERNAME = 'User'
PASSWORD = 'Password'
EMAIL = 'Email'
REMEMBER = 'Remember?'
REGISTER = 'Register'
CONNECT = 'Connect'
ONLINE = 'Server online'
OFFLINE = 'Server offline'
# Criação de personagem
NAME = 'Name'
SEX = 'Sex:'
CLASS = 'Class:'
GRAPHIC = 'Graphic:'
POINTS = 'Points:'
MALE = 'Man'
FEMALE = 'Woman'
# Personagem
LEVEL = 'Level:'
# Bate-papo
MAP = 'Map'
GLOBAL = 'Global'
PRIVATE = 'Private'
INVALID_NAME = 'Invalid name!'
NOT_PVP = 'You can not attack this player or in this place!'
NOT_ENOUGH_MONEY = 'Insufficient money!'
INVALID_COMMAND = 'Invalid command!'
# Alerta
SERVER_OFFLINE = 'The server is offline!'
INSUFFICIENT = '%s must be at least 3 characters!'
FORBIDDEN_CHARACTER = 'Forbidden character!'
INVALID_USERNAME = 'Invalid or logged in user!'
INVALID_PASSWORD = 'Invalid password!'
INVALID_EMAIL = 'Invalid email!'
REGISTER_SUCCESSFUL = 'Account registered successfully!'
ALREADY_EXISTS = 'This user already exists!'
CHAR_EXIST = 'This name is already being used!'
OLD_VERSION = "This version is old. Please upgrade!"
KICKED = 'You were kicked out of the game.!'
BANNED = 'You have been banned!'
TELEPORTED = 'You have been teleported!'
ACCOUNT_BANNED = 'You have been banned!'
IP_BANNED = 'Your IP has been banned!'
SERVER_FULL = "The server is full! Try again later!"
# Escolha
ASK = 'Are you sure?'
TRADE_REQUEST = 'Invited you to an trade. Accept?'
# Ajuda
CONSUMABLE = 'Consumable:'
HP_RECPOINTS = 'Rec. HP:'
SP_RECPOINTS = 'Rec. SP:'
SP_COST = 'Cost of SP:'
POWER = 'Power:'
HIT = 'Hit (%):'
EQUIPABLE = 'Can be equipped by'
NOT_EQUIPABLE = 'Can not be equipped by'
# Opções
LOGIN = 'Back to login'
EXIT = 'Exit game'
# Troca
TRADE_DECLINED = 'Declined the trade.'
TRADE_COMPLETE = 'want to complete the trade. Accept?'
IN_TRADE = 'This player is already on an trade.'
# Botões
OK = 'Ok'
CANCEL = 'Cancel'
YES = 'Yes'
NO = 'No'
ACCEPT = 'Accept'
DELETE = 'Delete'
CREATE = 'Create'
# Menus
MOTD = 'News'
LOGIN_ACC = 'Login'
REGISTER_NEW_ACC = 'Account creation'
CREATE_CHAR = 'Character creation'
ALERT = 'Alert'
CHARACTER = 'Character'
OPTIONS = 'Options'
SHOP = 'Shop'
AMOUNT = 'Amount'
TRADE = 'Trade'
# Batalha
MISS = 'Miss!'
CRITICAL = 'Critical!'
LEVEL_UP = 'Level up!'
end