Skalax Wiki
Status: Beta
Brought to you by:
skalaxcy
doNPC_Talk()
ฟังค์ชั่นสั่งให้บอทไปคุยกับ npc ในสเตปที่กำหนด
procedure ที่อนุญาติให้ใช้ = ทุก procedure
รูปแบบ = void doNPC_Talk( int npc_x , int npc_y , string npc_step);
ตัวอย่าง
นายไก่กาอาราเร่ กระซิบมาที่บอทสั่งให้วิ่งไปซื้อบัฟ เนื่องจากมันทำงานในกลุ่มแชท จึงให้ทำงานใน procedure main_chat
หมายเหตุ โปรดตรวจสอบ สเตป npc ทุกครั้งที่ใช้งาน
sub main_chat {
if ( msgPM("ไปนอนโรงแรม",1 , "นายไก่กาอาราเร่")) {
if ( "morocc" == onMap() ) {
doNPC_Talk( 158, 108 , "c c c c c c c r0 c n");
} else {
sendCommmand( "move morocc" );
}
}
}