Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Quest API] Add attuned/augment support to client->SummonBaggedItems() in Perl/Lua. #1580

Merged
merged 2 commits into from Oct 2, 2021

Conversation

Kinglykrab
Copy link
Contributor

Allows operators to spawn bagged items that are already attuned and/or have augments in them.
Perl Example:

my @bag_items = (
	{ item_id => 33649, charges => 1, attuned => 1, augment_one => 32940 },
);

Lua Example:

local bag_items = {
	{ item_id = 33649, charges = 1, attuned = 1, augment_one = 32940 }
}

…) in Perl/Lua.

Allows operators to spawn bagged items that are already attuned and/or have augments in them.
Perl Example:
```pl
my @bag_items = (
      { item_id => 33649, charges => 1, attuned => 1, augment_one => 32940 }
    );
```

Lua Example:
```lua
local bag_items = {
	{ item_id = 33649, charges = 1, attuned = 1, augment_one = 32940 }
}
@Kinglykrab Kinglykrab requested a review from hgtw October 2, 2021 21:05
@Kinglykrab Kinglykrab merged commit 5720a50 into master Oct 2, 2021
@Kinglykrab Kinglykrab deleted the feature/bagged_augments_attuned branch October 2, 2021 23:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants