// Evol scripts. // Authors: // Reid // Description: // Dye seller. // Variables: // ArtisQuests_Fexil // Quest states: // 0 -- not started // 1 -- Lloyd warned about the quest // 2 -- Fexil explain what he needs // 3 -- Fexil buy every fur that the pc bring to him 001-1,47,126,0 script Calypsan#001-1 NPC_CALYPSAN,{ speech 4, l("My shop is not yeye ready..."); .@fexil = getq(ArtisQuests_Fexil); menuint rif(.@fexil == 1, l("Have you seen Fexil?")), 0, l("Bye."), 1; switch (@menuret) { case 0: setcamnpc "Fexil#001-1"; speech 5, l("Oh yeye did, his store is just aside me!"), l("Yoiis should look there."); restorecam; break; case 1: break; } closedialog; goodbye; close; OnInit: .sex = G_FEMALE; .distance = 3; end; }