Jump to content
Giant Whisper

KielHyreQuest

Recommended Posts

Hola me podrian ayudar con esto, estoy terminando un NPC warper pero no se como hacer para que me reconosca que termine la Kiel Hyre Quest siempre me sale (no has hecho la quest)

if ((KielHyreQuest >= 38) && (KielHyreQuest < 106)) {

next;
menu     "Level 1 [^00bb000z^000000]",dkieldun1,
     "Level 2 [^00bb002000z^000000]",dkieldun2,
    "Back",Dungeon;
}
mes "no has hecho la quest";
close;

 

Edited by Mael
codebox
Link to comment
Share on other sites

Añade un else posterior al último "}"

if ((KielHyreQuest >= 38) && (KielHyreQuest < 106)) {

next;
menu     "Level 1 [^00bb000z^000000]",dkieldun1,
     "Level 2 [^00bb002000z^000000]",dkieldun2,
    "Back",Dungeon;
} else
mes "no has hecho la quest";
close;

 

Link to comment
Share on other sites

3 hours ago, Giant Whisper said:

Gracias por responder Easycore, sigue pasando lo mismo (no has hecho la quest)

Reemplaza:
 

if ((KielHyreQuest >= 38) && (KielHyreQuest < 106)) {
Por:

if (KielHyreQuest < 36) {

 

Link to comment
Share on other sites

6 minutes ago, Giant Whisper said:

ahora si me deja ir al dungeon, pero tambien al que no hace la quest

Perdón, me equivoqué en el signo, en realidad es:
 

if (KielHyreQuest > 36) {

 

Link to comment
Share on other sites

Hola, lo he resuelto de esta manera
----------------------------------------

NO_QUEST:
   mes "[^00bb00Warpra^000000]";
   mes "No has hecho la quest.";
   close2;
   cutin "",255;
   end;

----------------------------------------

if ((KielHyreQuest < 38) && (KielHyreQuest < 106)) goto NO_QUEST;
set KielHyreQuest,38;


de igual forma gracias :) publicare la script para todos cuando este completa :D

Edited by Mael
codebox
  • Upvote 1
Link to comment
Share on other sites

Join the conversation

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

Guest
Reply to this topic...

×   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.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.