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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

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