viewing paste Unknown #17366 | Athena

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
prontera,153,181,4  script  neo 402,{
 
// Abfrage 1
 
mes "Neo";
mes "Guten Tag,";
mes "Wie geht es dir?";
next;
mes "Neo";
menu "Ganz gut",gut,"schlecht",s;
close;
 
// Antwort bei Ganz gut
 
gut:
mes "Neo";
mes "Willst du was von mir Wissen?";
next; 
menu "Wie bekomme ich meine Wings",wings,"Eigentlich nicht",nicht;
close;
end;
 
// Antwort bei schlecht
 
s:
mes "Neo";
mes "Dann hau ab!";
close;
end;
 
// Abfrage 2, Antwort: Wie bekomme ich meine Wings
 
wings:
mes "Neo";
mes " Du muss mir was Sammeln";
next;
menu "Und was?",was,"Keine Lust",lust;
close;
 
// Abfrage 2; Antwort: eigentlich nichts
 
nicht:
mes "Neo";
mes "Dann habe ich dir auch nicht's zu sagen";
close;
 
// Abfrage 3; Antwort; Und was?
was:
mes "Neo";
mes "Ich Brauche Folgendes";
next;
mes "Neo";
mes "1x Angeling Card";
mes "1x Deviling Card";
mes "1x Poring Card";
next;
mes "Neo";
mes "Wenn du alles hast, Belohne ich dich";
close;
end;
 
// Abfrage 3, Antwort; Keine Lust
 
lust:
mes "Neo";
mes "Geh Fort du Noob";
close;
end;
 
// Items Überprüfen
 
if(countitem(4054) < 1  || countitem(4174) < 1  ||  countitem(4001) < 1)
{        
 
mes "Neo";
mes "Dir fehlt noch was";
close2;
}
 
mes "Neo";
mes "Sehr Schön hier ist deine Belohnung";
delitem 4054,1;
delitem 4174,1;
delitem 4001,1;
getitem 2236,1;
close;
}
 
Viewed 572 times, submitted by Guest.