Giant Whisper Posted May 7, 2017 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: 8 hours ago Share Posted May 7, 2017 (edited) 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 November 29, 2019 by Mael codebox Quote Link to comment Share on other sites More sharing options...
Easycore Posted May 9, 2017 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 220 Reputation: 258 Joined: 04/08/13 Last Seen: August 24, 2023 Share Posted May 9, 2017 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; Quote Link to comment Share on other sites More sharing options...
Giant Whisper Posted May 9, 2017 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: 8 hours ago Author Share Posted May 9, 2017 Gracias por responder Easycore, sigue pasando lo mismo (no has hecho la quest) Quote Link to comment Share on other sites More sharing options...
Easycore Posted May 9, 2017 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 220 Reputation: 258 Joined: 04/08/13 Last Seen: August 24, 2023 Share Posted May 9, 2017 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) { Quote Link to comment Share on other sites More sharing options...
Giant Whisper Posted May 9, 2017 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: 8 hours ago Author Share Posted May 9, 2017 ahora si me deja ir al dungeon, pero tambien al que no hace la quest Quote Link to comment Share on other sites More sharing options...
Easycore Posted May 9, 2017 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 220 Reputation: 258 Joined: 04/08/13 Last Seen: August 24, 2023 Share Posted May 9, 2017 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) { Quote Link to comment Share on other sites More sharing options...
Giant Whisper Posted May 9, 2017 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: 8 hours ago Author Share Posted May 9, 2017 cambiando lo de antes por este no deja ir ala cuenta sin la quest echa, y ala cuenta con la quest completada if (KielHyreQuest > 36) { Quote Link to comment Share on other sites More sharing options...
Giant Whisper Posted May 10, 2017 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: 8 hours ago Author Share Posted May 10, 2017 (edited) 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 Edited November 29, 2019 by Mael codebox 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.