Base: Project Insanity 317
Problem: Compiler
Code:
src\server\model\players\DialogueHandler.java:117: cannot find symbol
symbol : method sendNpcChat2(java.lang.String,java.lang.String,int,java.lang.St
ring)
location: class server.model.players.DialogueHandler
sendNpcChat2("Thank you for getting them back!","Here is your reward", c
.talkingNpc, "Santa");
^
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
1 error
Press any key to continue . . .
How do i fix this? please help me. I know its in DialogueHandler.java line 117..
But i dont know whats wrong with it.
Here is the section that has the problem:
Code:
case 101:
sendNpcChat2("Thank you for getting them back!","Here is your reward", c.talkingNpc, "Santa");
c.getItems().addItem(1038, 1);
c.getItems().addItem(1050, 1);
c.santaPrize = 3;
c.nextChat = 0;
break;