As state in question, kinda lost of what i did was wrong, could someone help me fix this script of mine.. thanks..
[Error]: buildin_callfunc:Function not found![F_restore]
Spoiler
moc_para01,46,36,4 script GuildBlacksmith826,{if(countitem(40056)<1){goto notmember;}//============================// functions//============================// F_restore
function F_restore {.@rental_item= getarg(0);.@item_1= getarg(1);.@item_2= getarg(2);.@item_3= getarg(3);if(rentalcountitem(.@rental_item)<1){
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "You don't have a ";
mes ""+ getitemname(.@rental_item)+".";
close;}if(countitem(.@item_1)<1){
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "You don't have a "+ getitemname(.@item_1)+".";
close;}if(countitem(.@item_2)<10){
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "You don't have 10 "+ getitemname(.@item_2)+".";
close;}
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Great, here is your new "+ getitemname(.@item_3)+".";
delitem (.@rental_item),1;
delitem (.@item_1),1;
delitem (.@item_2),10;
getitem (.@item_3),1;
close;}// Text//=============================
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Oh hello there, how can i help you ?";switch(select("- Restore:- Upgread Item Gred:- Cancel")){case1:goto restore1;case2:goto upgreadclass;case3:
end;}// Restore//=============================
restore1:
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Oh you need restore ?";switch(select("- Restore Information:- Restore Item:- Cancel")){case1:
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Well your item usually come"
mes "with 7 days rental period,";
mes "but if you wish to extend";
mes "that rental period";
mes "you can come to me";
mes "for a complete restore";
next;
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "To restore weapons or armor, i will need";
mes "- 1 Restore Token";
mes "- 10 Durengo Coin";
next;
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Just for the records.. i will only";
mes "restore Tier 2 and above items..";
next;
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "For tools i will just need";
mes "- 1 Restore Token";
mes "- 5 Durengo Coin";
close;case2:
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Ok then, what item do you need to restore ?";switch(select("- Weapon:- Armor:- Tools:- Cancel")){case1:goto wep_restore;case2:goto armor_restore;case3:goto tool_restore;case4:
end;}case3:
end;}
wep_restore:
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Select Weapon Tier";switch(select("- Tier 2:- Cancel")){case1:
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Select the weapon you wish to restore";switch(select("- Improvise Dagger:- Cancel")){case1:goto improdaggres;case2:
end;}case2:
end;}
improdaggres:
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Select Dagger Gred";switch(select("- Gred A:- Gred B:- Gred C:- Gred D:- Gred E:- Cancel")){case1:
callfunc "F_restore",40081,40225,40016,40082;case2:
end;case3:
end;case4:
end;case5:
end;case6:
end;}
armor_restore:
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Work In Progress";
close;
tool_restore:
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Work In Progress";
close;// Upgrade//=============================
upgreadclass:
clear;
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "Work In Progress";
close;// Members//=============================
notmember:
soundeffect "menu.wav",0;
mes "^ce7e00 === Hafiz === ^000000";
mes "You need to be a member before i can asist you.";
close;}
Question
Dolphin86
As state in question, kinda lost of what i did was wrong, could someone help me fix this script of mine.. thanks..
Link to comment
Share on other sites
8 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.