Jump to content
  • 0
Sign in to follow this  
Disgaea

NPC Blank

Question

After give him the items and he give me the item, when i talk with him again he doesn't say nothing, just stays in blank, the script:

 

 

@count++;
    mes "[npc name]";
    if (@count == 1) mes "Please, do not bother me. I am in pain.";
    if (@count == 2) mes "Can you not see I am grieving? Begone.";
    if (@count == 3) mes "I have no quarrel with you stranger, LEAVE ME BE.";
    if (@count == 4) {
    if(countitem(578) >= 80)
        {
            delitem 578,80;
            
            getitem 19620,1;
            
            mes "Congrats!";
            close;
        }
        
        mes "Im sorry for being rude, please, come near me. Would you like to hear my melancholic tale?";

 


 


 

 

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0

After give him the items and he give me the item, when i talk with him again he doesn't say nothing, just stays in blank, the script:

 

 

Can you post the whole script? Don't forget to use codebox.

Share this post


Link to post
Share on other sites
  • 0

emm maybe something like that

    mes "[npc name]";
    if (@count == 1) {
		mes "Please, do not bother me. I am in pain.";
	}
    if (@count == 2) {
		mes "Can you not see I am grieving? Begone.";
	}
    if (@count == 3) {
		mes "I have no quarrel with you stranger, LEAVE ME BE.";
	}
    if (@count == 4) {
		if (countitem(578) >= 80) {
            delitem 578,80;
            getitem 19620,1;
            mes "Congrats!";
            ++@count;
            close;
        }
    } else {
        mes "Im sorry for being rude, please, come near me. Would you like to hear my melancholic tale?";
	}
        ++@count;
	close();
Edited by Asheraf

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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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