• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->
Resource icon

Lua - SummonItem.lua (1 Viewer) 1.0

poldetson

Member
Joined
Oct 16, 2020
RedCents
30¢
poldetson submitted a new resource:

SummonItem.lua - Automatically summon items and keep a set number in inventory

I hate having to summon food / drink for toons that aren't using CWTN plugins or KissAssist scripts.

This utility will automatically summon items and place them in your inventory. It will then keep a stack of those items ready for you as you consume them. The obvious use of this script is for food and drink but could also be used to summon anything you have a clicky for.

Read more about this resource...
 
Thank you for this. I am trying to Wee'er Harvester & Bigger Belt of the River.
Seems like the apostrophe in >>> Wee'er Harvester errors out the program also.

I did what you said to do in the notes.

while true do
CheckInventory('Murky Globe of Water', 'Bigger Belt of the River', 10);
CheckInventory('Burned Black Bread', 'Wee'er Harvester', 10);
mq.delay('10s')
end
 
CheckInventory('Burned Black Bread', 'Wee'er Harvester', 10);
Wee'er needs a backslash in front of the apostrophe.

CheckInventory('Burned Black Bread', 'Wee\'er Harvester', 10);

Or wrap that string in double quotes instead of single quotes.

CheckInventory('Burned Black Bread', "Wee'er Harvester", 10);
 
Wee'er needs a backslash in front of the apostrophe.

CheckInventory('Burned Black Bread', 'Wee\'er Harvester', 10);

Or wrap that string in double quotes instead of single quotes.

CheckInventory('Burned Black Bread', "Wee'er Harvester", 10);

Thanks, that took the errors out, but still will not cast.
 
Lua - SummonItem.lua

Users who are viewing this thread

Back
Top