Jump to content
  • 0

Emm. This is crazy!


Question

Posted (edited)

Why is this script not working?? Can someone test it in their server please.. i just made it.. :$ But i don't know what is wrong with it!!

Any Suggestions???

//===== eAthena/rAthena Script =======================================
//= Quest Script
//===== By: ==================================================
//= Franyerii Graphics
//===== Current Version: =====================================
//= Fine Quality Model
//===== Compatible With: =====================================
//= All Kind of rAthena/eAthena
//===== Description: =========================================
//= Quest Script, can be used for any quest.
//===== Additional Comments: =================================
//= If you are using this script, please give all the credits to
//= Franyerii Graph.
//= Fine Quality.
//= True Quisqueyano.
//============================================================
quiz_01,48,191,4 script Ear Wings 808,{
mes "Hello, Im [^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "and here i have 2 kinds of ear wings";
mes "Would you like to continue? OR leave??";
menu "Yes, Continue",R_menu,"No, Leave",R_leave;

R_menu:
next;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "This are the 2 Ear Wings";
mes "Please make a choice and ill tell you what consist on";
mes "Or just Choose 'LEAVE' to leave and come back later";
menu "Angel Ear Wings[1]",R_angel,"Evil Ear Wings[1]",R_evil,"Leave...",R_leave1;
R_angel:
next;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "The ^ff0000Angel Ear Wings[1]^000000 provides you the following";
mes "Str+2 And 1 slot for a car";
mes "What would you like to do??";
menu "What Do i need???",R_go,"Back to main 'MENU'",R_menu,"Leave",R_leave2;

R_go:
next;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "For The ^ff0000Angel Ear Wings^000000 ~This is what you need!";
mes "50 Moth Wings":
mes "2 Vanberk Card";
mes "5m Zeny";
mes "You think you got the items??";
menu "Yes, Goooo...",R_yes,"Back To menu...",R_menu,"Leave...",R_leave1;

R_yes:
next;
if (countitem(1058)<50)goto L_broke;
if (countitem(4411)<2)goto L_broke;
if (zeny <5000000)goto L_broke;
next;
delitem 1058,50;
delitem 4411,2;
set Zeny, zeny -5000000;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "Congrats...  You just made the ^ff0000Angel Ear Wings^000000";
mes "Take Good Care of them.. Good luck";
getitem 5074,1;
close;

R_evil:
next;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "The ^ff0000Evil Ear Wings^000000 Provides you the following";
mes "Str 1 And 1 slot for a card";
mes "What would you like to do??";
menu "What Do i need???",R_go1,"Back to main 'MENU'",R_menu,"Leave",R_leave2;

R_go1:
next;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "50 Little Evil Wing";
mes "2 Vanberk Card";
mes "5m Zeny";
mes "You think you got the items??";
menu "Yes, Goooo",R_yes1,"Back To menu",R_menu,"Leave...",R_leave1;

R_yes1:
next;
if (countitem(1039)<50)goto L_broke;
if (countitem(4411)<2)goto L_broke;
if (zeny <5000000)goto L_broke;
next;
delitem 1058,50;
delitem 4411,2;
set Zeny, zeny -5000000;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "Congrats...  You just made the ^ff0000Evil Ear Wings^000000";
mes "Take Good Care of them.. Good luck";
getitem 5068,1;
close;

R_leave:
next;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "You don't know what you loosing";
close;

R_leave1:
next;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "I guess you not ready";
close;

R_leave2:
next;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "HEHEH!!! Nice.. •________• You're not that pro, NOOB";
close;

L_broke:
next;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "I guess you don't have all the items";
mes "Please check your inventory and see if u have all of them";
close;
}

Edited by clydelion
use codebox for long codes

2 answers to this question

Recommended Posts

Posted (edited)

Please use Codebox if you want properly be helped

http://rathena.org/b...nt-3-codeboxes/

Your error :

R_go:
next;
mes "[^0000ffAlfonso^000000 ^0000ffM^000000.^0000ffC^000000.]";
mes "For The ^ff0000Angel Ear Wings^000000 ~This is what you need!";
mes "50 Moth Wings":

"50 Moth Wings":

must be

"50 Moth Wings";

Edited by Capuche
  • Upvote 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...