I want to create a custom script for the Alchemist class, but without a homunculus to enter the room, how to know??
//====Masuk
prontera,164,174,3 script Creation NPC 81,{
if (zeny < 1000000) goto N_Zeny;
if ( gethominfo(0) != 0 )goto N_homun;
warp "ordeal_2-1",149,150;
N_Zeny:
mes "[Creation NPC]";
mes "Maaf Zeny kamu tidak cukup untuk memasuki ruangan ini";
close;
N_homun:
mes "[Creation NPC]";
mes "Maaf kamu tidak boleh membawa homunculus";
close;
}
//====Keluar
ordeal_2-1,150,158,3 script Creation#exitctr 81,{
warp "prontera",155,180;
close;
OnInit:
waitingroom "Exit",0;
end;
}
Question
Akbare
I want to create a custom script for the Alchemist class, but without a homunculus to enter the room, how to know??
Ok works
thanks for advance
Edited by Akbare3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.