cant move after.

Mission

New member
Messages
32
Points
0
can anyone help me please..

i cant move after using my armor enchant.. idk what's going on.. im tryin to fix it. but nothing happen

 
post the script, tell us in which part you get stuck and if there is any error on console

 
post the script, tell us in which part you get stuck and if there is any error on console
here's my script sir.. and my screen shot
iveknr.jpg
 

http://pastebin.com/D0Tq58gT
 
Last edited by a moderator:
1. the script doesn't show up anymore for some reason, thankfully I was still looking at it and managed to copy paste it beforehand. -> http://upaste.me/188133 copied version

2. Not addressing the issue you have but, 

mes "[Apprentice Craftsman]";                        mes "Quite of an adventurer huh? Well, shall we?";                        close2;                        specialeffect2 EF_MAPPILLAR;                        if(countitem(7227) < 50 || countitem(6242) < 1){                               mes "[Apprentice Craftsman]";                                mes "Sorry, You dont have the requirements.";                                close;                        }
Why do you use close2; and close?

close2 closes the window but keeps the character attached, and continues with the script.. so if the character has 50 or more TCG cards and 1 or more midgard coins he'll be stuck at that point.

 
Last edited by a moderator:
sorry sir.. i really dk how to fix that script.. when i try to change the close2 into close.. the npc end the conversation..
please help me fix my npc
default_sad.png
 
im a newbie.. im no good enough ,,,

 
Just do

Code:
mes "[Apprentice Craftsman]";mes "Quite of an adventurer huh? Well, shall we?";specialeffect2 EF_MAPPILLAR;if(countitem(7227) < 50 || countitem(6242) < 1){        mes "[Apprentice Craftsman]";        mes "Sorry, You dont have the requirements.";}close;
 
Back
Top