Jump to content
  • 0
Sign in to follow this  
Tranquility

Failing to debug an error

Question

Greetings,

 

Upon converting some of my scripts I noticed Herc didn't have a few scriptcommands that rA had. No big deal since we got plugins here!

Anyhow, that's what I thought until I bumped into getting stuck with the follow plugin that I'm attempting to create:

 

 

  Reveal hidden contents

 

Fixed the above script, added it incase people are interested. Will 'officially' release it in the plugin release when the below script is finished/working as well.

 

The next script that had to be made was the deletion of items in the storage. Thus storagedelitem came here to ruin my night, the follow is what I got, but doesn't work for one milimeter:

 

  Reveal hidden contents

 

The original delitem script is used as reference and is as following:

 

  Reveal hidden contents

 

 And what I think is needed is the following part from storage.c:

 

  Reveal hidden contents

 

Where did I mess up this time? Where didn't I mess up you're probably thinking by now..

Edited by Tranquility

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Another question then, how am I able to call  *delitem from storage.h?
It's located within in the storage_interface struct and I think I need to use that for the storagedelitem script I'm writing. However, when including storage.c I'm able to do it, but it'll throw tons of errors.
Struggling with an undeclared MakeDWord when processing "buildin_delitem_delete".

intif->delete_petdata(MakeDWord(inv->card[1], inv->card[2])); 

That line specifically, anyone able to help out there?
 
Latest modification for the storagedelitem script but still stuck on the MakeDWord part.

 

Fixed, had to declare MakeDWord again:

 

//Declaration of MakeDWord to allow the uint32 MakeDWord(uint16 word0, uint16 word1) {	return		( (uint32)(word0        ) )|		( (uint32)(word1 << 0x10) );}
Edited by Tranquility

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.

Sign in to follow this  

×
×
  • Create New...

Important Information

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