Bug - Fixed Inigo cast silent fail due to max casts per day

NardoLoopa

Member
Code:
Casting Inigo's Incantation of Inspiration on yourself 1 times...
Inigo's Incantation of Inspiration was successfully cast on yourself.

Only it wasn't successful because I've exceeded my limit for Inigo's for the day. The 100MP is subtracted. There is no fail message. But no effect shows in the list.
 
Last edited:

lostcalpolydude

Developer
Staff member
You can't cast that many turns of that skill today. (You've used 10 casts today, and the limit of casts per day you have is 10.)
When you get this message, the number of casts used will always equal the limit. If you've used 8 out of 10 casts and try to cast it 4 more times, the game only gives you 2 more casts and only lets you know that through the reduced effect duration that you receive.
 

roippi

Developer
Yes, this was fixed when we started tracking casts.

Code:
> prefref inigo

_inigosCasts (user, now '5', default 0)

> set _inigosCasts = 2

_inigosCasts => 2

> cast inigo

Using 2 Knob Goblin superseltzer...
You gain 56 Mojo Points
Finished using 2 Knob Goblin superseltzer.
Using 1 magical mystery juice...
You gain 24 Mojo Points
Finished using 1 magical mystery juice.
Casting Inigo's Incantation of Inspiration 1 times...
You've reached your daily casting limit for that skill.

> prefref inigo

_inigosCasts (user, now '5', default 0)
 
Top