npc "prt_fild05" "二轉協助人員" 4W_M_02 285 229 4 5 5 OnClick: dialog "[二轉協助人員]" dialog "您好 我可以幫您代理申請轉職" dialog "請選擇你想的二轉職業:" wait choose menu "十字軍" "遊俠" "賢者" "修道士" "鍊金術士" "取消" case 1 dialog "[二轉協助人員]" if v[VAR_JOB] == CRUSADER dialog "你的職業已經是十字軍了。" close return endif
if v[VAR_JOB] != SWORDMAN if v[VAR_JOB] == NOVICE dialog "請先成為 '劍士'。" close return else dialog "只有現職為'劍士'的人才能轉職成為'十字軍'。" close return endif endif
if v[VAR_JOBLEVEL] < 40 dialog "請你在職業等級到達40以上再過來" close return endif
dialog "順利轉職成為十字軍。" jobchange CRUSADER close break case 2 dialog "[二轉協助人員]" if v[VAR_JOB] == ROGUE dialog "你的職業已經是遊俠了。" close return endif
if v[VAR_JOB] != THIEF if v[VAR_JOB] == NOVICE dialog "請先成為 '盜賊'。" close return else dialog "只有現職為'盜賊'的人才能轉職成為'遊俠'。" close return endif endif
if v[VAR_JOBLEVEL] < 40 dialog "請你在職業等級到達40以上再過來。" close return endif
dialog "順利轉職成為遊俠。" jobchange ROGUE close break
case 3 dialog "[二轉協助人員]" if v[VAR_JOB] == SAGE dialog "你的職業已經是賢者了。" close return endif
if v[VAR_JOB] != MAGICIAN if v[VAR_JOB] == NOVICE dialog "請先成為 '魔法師'。" close return else dialog "只有現職為'魔法師'的人才能轉職成為'賢者'。" close return endif endif
if v[VAR_JOBLEVEL] < 40 dialog "請你在職業等級到達40以上再過來。" close return endif
dialog "順利轉職成為賢者。" jobchange SAGE close break
case 4 dialog "[二轉協助人員]" if v[VAR_JOB] == MONK dialog "你的職業已經是修道士了。" close return endif
if v[VAR_JOB] != ACOLYTE if v[VAR_JOB] == NOVICE dialog "請先成為 '服事'。" close return else dialog "只有現職為'服事'的人才能轉職成為'修道士'。" close return endif endif
if v[VAR_JOBLEVEL] < 40 dialog "請你在職業等級到達40以上再過來" close return endif
dialog "順利轉職成為修道士了。" jobchange MONK close break
case 5 dialog "[二轉協助人員]" if v[VAR_JOB] == ALCHEMIST dialog "你的職業已經是鍊金術士了。" close return endif
if v[VAR_JOB] != MERCHANT if v[VAR_JOB] == NOVICE dialog "請先成為 '商人'。" close return else dialog "只有現職為'商人'的人才能轉職成為'鍊金術士'。" close return endif endif
if v[VAR_JOBLEVEL] < 40 dialog "請你在職業等級到達40以上再過來" close return endif
dialog "順利轉職成為鍊金術士。" jobchange ALCHEMIST close break
case 6 break endchoose return |