Jump to content

Question

5 answers to this question

Recommended Posts

Posted

i already tried but when i try in game nothing happen. i put it in item when item put on enable to use storage



	case ALL_STORAGE:
	if (sd->npc_id || sd->state.vending || sd->state.buyingstore || sd->state.trading || sd->state.storage_flag)
		return -1;

	if (storage_storageopen(sd) == 1)
		break;

 

 

is that wrong??

Posted

Hmm

I'm tried to make new skill (but i don't create new skil 'cause it takes time and i'm too lazy, just replace code for MC_IDENTIFY) and it works

All i do is

replaced this

    case MC_IDENTIFY:
        if(sd)
            clif_item_identify_list(sd);
        break;
with this
    case MC_IDENTIFY:
        if(sd)
            if (storage_storageopen(sd))
                return -1;
        break;
 

 

and wrote in the beginning

#include "storage.h"
 

What i'm doing wrong? (=

Posted

I tried it hard but when i clicked the skill still no happen. i already put it right and it appear in the misc tab but unlike other item like aura mazda when item put on the skill appear in misc tab when the item put off the skill gone in misc tab. unlike my custom skill it is already in misc tab even the item is not on or off it is active but still no happen when i clicked but when i use @useskill its 100% working

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.   Paste as plain text instead

  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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...