diff options
-rw-r--r-- | npc/000-1/cookiemaster.txt | 4 | ||||
-rw-r--r-- | npc/001-1/cookiemaster.txt | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/npc/000-1/cookiemaster.txt b/npc/000-1/cookiemaster.txt index 391074cb..09eac339 100644 --- a/npc/000-1/cookiemaster.txt +++ b/npc/000-1/cookiemaster.txt @@ -9,7 +9,7 @@ // Size = 2 // Gender = 0 000-1,97,50,0 script Cookie Master 419,{ - if (getq(GeneraL_Cookies) == 1) + if (getq(General_Cookies) == 1) goto L_GetCookie; mesn; @@ -183,7 +183,7 @@ L_Reward: set .@count, 1; callfunc "InventoryPlace", 517, 1; - setq GeneraL_Cookies, 1; + setq General_Cookies, 1; getitem "DeliciousCookie", 1; npctalk3 l("You receive a @@!", getitemlink("DeliciousCookie")); diff --git a/npc/001-1/cookiemaster.txt b/npc/001-1/cookiemaster.txt index 9b527694..f51c332e 100644 --- a/npc/001-1/cookiemaster.txt +++ b/npc/001-1/cookiemaster.txt @@ -13,9 +13,9 @@ // Size = 2 // Gender = 0 001-1,39,38,0 script Cookie Master 419,{ - if ((countitemcolor("DeliciousCookie") == 0) && (getq(GeneraL_Cookies) == 1)) + if ((countitemcolor("DeliciousCookie") == 0) && (getq(General_Cookies) == 1)) goto L_LostCookie; - if (getq(GeneraL_Cookies) == 1) + if (getq(General_Cookies) == 1) goto L_GetCookie; mesn; @@ -181,7 +181,7 @@ L_Reward: set .@count, 1; callfunc "InventoryPlace", 517, 1; - setq GeneraL_Cookies, 1; + setq General_Cookies, 1; getitem "DeliciousCookie", 1; npctalk3 l("You receive a @@!", getitemlink("DeliciousCookie")); |