NPC Blank

Disgaea

New member
Messages
39
Points
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:

@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?";



 



 
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.

 
emm maybe something like that

Code:
    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();
 
Last edited by a moderator:
Back
Top