Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const items = $dataItems.concat($dataWeapons).concat($dataArmors);
- const quantity = 10;
- for (const item of items) {
- if (!item) continue;
- if (item.name.trim() === '') continue;
- if (item.name.includes('-----')) continue;
- if (item.itypeId === 2) continue;
- $gameParty.gainItem(item, quantity);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement