summaryrefslogtreecommitdiff
path: root/npc/guilds/alchemy.txt
blob: 99da224c756d23414e3d03bf0aeba2870ae9631e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Moubootaur Legends Script
// Author:
//    Jesusalva
// Description:
//  Guild Facility - Alchemy Table

guilds,24,35,0	script	Guild Chemistry	NPC_NO_SPRITE,{
    do
    {
        mesc l("What will you brew today?");
        mesc l("Note: Items brewed here will use a Guild Recipe instead!");
        if (AlchemySystem(CRAFT_GUILD))
        {
            mesc l("Success!"), 3;
            next;
        }
        else
        {
            mesc l("That didn't work!"), 1;
            next;
        }
        mesc l("Try again?");
    } while (askyesno() == ASK_YES);
    close;

OnInit:
    .distance=2;
    end;
}