// TMW2 Script // Author: // Jesusalva // Description: // Intense Beard is the crafting master 003-8,27,42,4 script Intense Beard NPC_HUMAN_M_ARTIS,{ if (BaseLevel < 35) goto L_SemNivel; if (!countitem(RecipeBook)) goto L_SemLivro; mesn; mesq l("Hello my friend! I see you've brought your @@ with you this time!", getitemlink(RecipeBook)); next; mesn; mesc l("TODO"), 1; close; L_SemNivel: mesn; mesq l("Please don't disturb me, I'm busy crafting my own customized power mega blaster weapon. I just keep failing to apply +100% exp gain bonus on it!"); close; L_SemLivro: mesn; mesq l("Heya, noob. Do you have a @@? No? I thought everyone gained one at birth from their parents!", getitemlink(RecipeBook)); next; mesn; mesq l("That's too bad, because I could teach you some amazing craft skills! This will need to wait another day, I guess. Oh well."); next; mesn; mesq l("Better ask your parents for one... Failing that, maybe someone in the Alliance can gift you one."); close; OnInit: .sex=G_MALE; .distance=5; npcsit; end; }