pdm0822님의 한글스크립트를 적용하던중 오류가 발생했는데 제가 공부한걸로는 고칠수가 없더라구요..
자꾸 93번 라인이 오류라고 뜨길래 복사해왔습니다.. 한번 봐주시고 말해주세요
맨윗줄에 있는 주석이 92번라인이고 그밑에 있는게 바로 93번입니다. 오류좀 고쳐주세요 ㅠㅠ
#--------------------------------------------------------------------------
def self.level; basic(0); end # 레벨
def self.level_a; basic(1); end # 레벨 (短)
def self.hp; basic(2); end # HP
def self.hp_a; basic(3); end # HP (短)
def self.mp; basic(4); end # MP
def self.mp_a; basic(5); end # MP (短)
def self.tp; basic(6); end # TP
def self.tp_a; basic(7); end # TP (短)
def self.fight; command(0); end # 싸운다
def self.escape; command(1); end # 도망
def self.attack; command(2); end # 공격
def self.guard; command(3); end # 방어
def self.item; command(4); end # 아이템
def self.skill; command(5); end # 스킬
def self.equip; command(6); end # 장비
def self.status; command(7); end # 스테이터스
def self.formation; command(8); end # 정렬
def self.save; command(9); end # 세이브
def self.game_end; command(10); end # 게임 종료
def self.weapon; command(12); end # 무기
def self.armor; command(13); end # 방어구
def self.key_item; command(14); end # 소중한것
def self.equip2; command(15); end # 장비변경
def self.optimize; command(16); end # 최강장비
def self.clear; command(17); end # 모두 제거
def self.new_game; command(18); end # 뉴 게임
def self.continue; command(19); end # 컨티뉴
def self.shutdown; command(20); end # 종료
def self.to_title; command(21); end # 타이틀로
def self.cancel; command(22); end # 취소
#--------------------------------------------------------------------------
end#--------------------------------------------------------------------------
def self.level; basic(0); end # 레벨
def self.level_a; basic(1); end # 레벨 (短)
def self.hp; basic(2); end # HP
def self.hp_a; basic(3); end # HP (短)
def self.mp; basic(4); end # MP
def self.mp_a; basic(5); end # MP (短)
def self.tp; basic(6); end # TP
def self.tp_a; basic(7); end # TP (短)
def self.fight; command(0); end # 싸운다
def self.escape; command(1); end # 도망
def self.attack; command(2); end # 공격
def self.guard; command(3); end # 방어
def self.item; command(4); end # 아이템
def self.skill; command(5); end # 스킬
def self.equip; command(6); end # 장비
def self.status; command(7); end # 스테이터스
def self.formation; command(8); end # 정렬
def self.save; command(9); end # 세이브
def self.game_end; command(10); end # 게임 종료
def self.weapon; command(12); end # 무기
def self.armor; command(13); end # 방어구
def self.key_item; command(14); end # 소중한것
def self.equip2; command(15); end # 장비변경
def self.optimize; command(16); end # 최강장비
def self.clear; command(17); end # 모두 제거
def self.new_game; command(18); end # 뉴 게임
def self.continue; command(19); end # 컨티뉴
def self.shutdown; command(20); end # 종료
def self.to_title; command(21); end # 타이틀로
def self.cancel; command(22); end # 취소
#--------------------------------------------------------------------------
end