Hello, I am introducing myself to this scripting world, it is amazing haha, but what is hard to me is to find the correct instruction for somethings I want to do.
I've just made a npc script, which gives you newbie supplies and some other stuff:
poring_gnd,79,88,5 script Get Started::start 117,{ mes "[^001D9CGet Started^000000]"; mes "Hello!"; mes "I am the one who will guide you into this amazing world!"; next; mes "What would you like to do?"; menu "I want to train!",train,"Get me to Prontera!",prontera,"Nothing.",nothing; train: mes "That's Great!"; mes "I am giving you these equipments so you can start your adventure!"; getitem 1243,1; getitem 569,100; close; prontera: savepoint prontera,156,179; warp "prontera",156,70; close; nothing: mes "Have a good trip!"; close; /* *is it working?*/ }
But what I want to do is to tag a player after he/she gets the items from the npc, so when he tries again to get these items, this tag will say to the npc to not give the items.
I am following this kind of guide but it's hard to see which instruction I need to use.
Question
eKoh
Hello, I am introducing myself to this scripting world, it is amazing haha, but what is hard to me is to find the correct instruction for somethings I want to do.
I've just made a npc script, which gives you newbie supplies and some other stuff:
poring_gnd,79,88,5 script Get Started::start 117,{
mes "[^001D9CGet Started^000000]";
mes "Hello!";
mes "I am the one who will guide you into this amazing world!";
next;
mes "What would you like to do?";
menu "I want to train!",train,"Get me to Prontera!",prontera,"Nothing.",nothing;
train:
mes "That's Great!";
mes "I am giving you these equipments so you can start your adventure!";
getitem 1243,1;
getitem 569,100;
close;
prontera:
savepoint prontera,156,179;
warp "prontera",156,70;
close;
nothing:
mes "Have a good trip!";
close;
/*
*is it working?*/
}
But what I want to do is to tag a player after he/she gets the items from the npc, so when he tries again to get these items, this tag will say to the npc to not give the items.
I am following this kind of guide but it's hard to see which instruction I need to use.
Edited by eKoh2 answers to this question
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.