Jump to content
  • 0
Begin

Euphy's Quest Shop Bug

Question

Hi Everyone!

I am a fan of Euphy and using his script for years. But can someone update the shop he created because there's a bug on Preview option?

How to reproduce:

- Wear a Hat

- Talk to NPC, drag any headgear item then click Buy

- Select Preview

- Alt+Q then unequip your Hat

 

Here's the script:

  Reveal hidden contents

 

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0

2 ways to fix this

1. simple, just add *disable_items script command at the beginning of the script

2.  or you can also do like this, up to you

OnEnd:
	if (@qe[7]) {
		changelook LOOK_HEAD_BOTTOM, @qe[3];
		changelook LOOK_HEAD_TOP, @qe[4];
		changelook LOOK_HEAD_MID, @qe[5];
		changelook LOOK_ROBE, @qe[6];
	}
	deletearray @qe[0],8;
	end;

change into

OnEnd:
	if (@qe[7]) {
		changelook LOOK_HEAD_BOTTOM, getlook(LOOK_HEAD_BOTTOM);
		changelook LOOK_HEAD_TOP, getlook(LOOK_HEAD_TOP);
		changelook LOOK_HEAD_MID, getlook(LOOK_HEAD_MID);
		changelook LOOK_ROBE, getlook(LOOK_ROBE);
	}
	deletearray @qe[0],8;
	end;

 

Share this post


Link to post
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
Answer this question...

×   Pasted as rich text.   Restore formatting

  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.