XP 스크립트

이것 시세 사용법은 스크립트 속에

 

#----------- 스크립트의 시작 ------------
# ▼▲▼ XRXS36. 숍·변동시장 ▼▲▼
# Create by 앵아 재흙
# EDIT by Kim

#사용 법 : 이벤트 생성 - 스크립트 - 해당 스크립트 입력 - 그 아래에 상점 개시

# 모든 아이템 : command_ai_quote(퍼센트)
# 지정한 범위의 아이템 : command_i_quote(ID1, ID2, 퍼센트) ID1~ID2에 적용
# 하나의 아이템만 설정 : command_item_quote(ID, 퍼센트) 지정한 ID에만 적용

# 무기나 방어구는 위의 사용법 세가지를 변경해주시면 되는데..
# 글씨 색으로 구분하시길..
# 무기 : ai -> aw / i-> w / item-> weapon
# 방어구: ai -> aa / i->a / item-> armor
# 입니다.

#==============================================================================
# ■ Interpreter
#==============================================================================
class Interpreter
#--------------------------------------------------------------------------
# ◇ 모든 아이템의 시세를 설정
#--------------------------------------------------------------------------
def command_ai_quote(percent)
for ids in 1...$data_items.size
command_item_quote(ids, percent)
end
end
#--------------------------------------------------------------------------
# ◇ 지정한 범위의 아이템의 시세를 설정
#--------------------------------------------------------------------------
def command_i_quote(ia, ib, percent)
for ids in ia...ib
command_item_quote(ids, percent)
end
end
#--------------------------------------------------------------------------
# ◇ 모든 무기의 시세를 설정
#--------------------------------------------------------------------------

def command_aw_quote(percent)
for ids in 1...$data_items.size
command_weapon_quote(ids, percent)
end
end
#--------------------------------------------------------------------------
# ◇ 지정한 범위의 무기의 시세를 설정
#--------------------------------------------------------------------------
def command_w_quote(ia, ib, percent)
for ids in ia...ib
command_weapon_quote(ids, percent)
end
end
#--------------------------------------------------------------------------
# ◇ 모든 방어구의 시세를 설정
#--------------------------------------------------------------------------
def command_aa_quote(percent)
for ids in 1...$data_items.size
command_armor_quote(ids, percent)
end
end
#--------------------------------------------------------------------------
# ◇ 지정한 범위의 방어구의 시세를 설정
#--------------------------------------------------------------------------
def command_a_quote(ia, ib, percent)
for ids in ia...ib
command_armor_quote(ids, percent)
end
end

 

#--------------------------------------------------------------------------
# ◇ 하나의 아이템의 시세를 설정
#--------------------------------------------------------------------------
def command_item_quote(id, percent)
$data_items[id].quotation_percent = percent
end
#--------------------------------------------------------------------------
# ◇ 하나의 무기의 시세를 설정
#--------------------------------------------------------------------------
def command_weapon_quote(id, percent)
$data_weapons[id].quotation_percent = percent
end
#--------------------------------------------------------------------------
# ◇ 하나의 방어용 기구의 시세를 설정
#--------------------------------------------------------------------------
def command_armor_quote(id, percent)
$data_armors[id].quotation_percent = percent
end
end

module RPG
#==============================================================================
# ■ RPG::Item
#==============================================================================
class Item
attr_accessor :quotation_percent
#--------------------------------------------------------------------------
# ● 가격
#--------------------------------------------------------------------------
def price
# 초기화
@quotation_percent = 100 if @quotation_percent.nil?
# 치를 돌려주는
return @price * @quotation_percent / 100
end
end
#==============================================================================
# ■ RPG::Weapon
#==============================================================================
class Weapon
attr_accessor :quotation_percent
#--------------------------------------------------------------------------
# ● 가격
#--------------------------------------------------------------------------
def price
# 초기화
@quotation_percent = 100 if @quotation_percent.nil?
# 치를 돌려주는
return @price * @quotation_percent / 100
end
end
#==============================================================================
# ■ RPG::Armor
#==============================================================================
class Armor
attr_accessor :quotation_percent
#--------------------------------------------------------------------------
# ● 가격
#--------------------------------------------------------------------------
def price
# 초기화
@quotation_percent = 100 if @quotation_percent.nil?
# 치를 돌려주는
return @price * @quotation_percent / 100
end
end
end

#----------- 스크립트의 끝 ------------

 

 

 

Comment '8'

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 6153
961 키입력 Aleworks Input Module 1.21 by vgvgf (SDK호환) 8 WMN 2008.04.06 2145
960 메뉴 링 메뉴 16 Neowitch* 2008.04.18 3478
959 메뉴 링 메뉴 소지금,플레이시간 추가 버젼 17 Neowitch* 2008.04.20 3022
958 Fog of War 4 file 실마릴 2008.06.19 2498
957 스크립트를 배우시기 전에..... 5 독도2005 2008.08.31 2326
956 테두리 글자 & 그림자 글자 12 아방스 2008.09.19 2643
955 메뉴 링메뉴 New 9 sdjfl465 2008.09.27 2861
954 전투 전투불능 케릭터 강제삭제 7 독도2005 2008.10.05 1918
953 기타 캐릭터 소개 화면 22 file 독도2005 2008.10.05 4098
952 HUD HP과 SP 바 19 Man... 2008.11.04 4534
951 이름입력 대화창에 얼굴, 이름 띄우기 37 킬라롯 2008.11.09 7496
» 상점 ▼▲▼ XRXS36. 숍·변동시장 ▼▲▼ (시세) 8 D.S.Y 2008.12.09 2025
949 온라인 채팅 가능 온라인 스크립트 배포 107 file 아방스 2009.01.03 10680
948 전투 xas히어로에디션 3.4 14 ps인간 2009.01.04 4043
947 온라인 Mr.Metring NPE 1.0 [RPG XP 온라인 스크립트] 35 아방스 2009.01.07 6535
946 타이틀/게임오버 타이틀 전에 로고 띄우기, 홈피 띄우기, 메일 보내기 13 file 유아 2009.01.09 3554
945 [자작]일괄조작 관련 스크립트 5 나뚜루 2009.01.10 1913
944 메뉴 자세항 개인 상태화면 8 아방스 2009.01.12 2361
943 메뉴 자세한 캐릭터 정보표시 스크립트 버전2 5 아방스 2009.01.12 2328
942 메뉴 파이널 판타지 7 스타일 메뉴 7 아방스 2009.01.12 3237
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ... 52 Next
/ 52