-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15ea75c
commit ec80b8a
Showing
11 changed files
with
508 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
local constructionKits = { | ||
[3901] = 1666, | ||
[3902] = 1670, | ||
[3903] = 1652, | ||
[3904] = 1674, | ||
[3905] = 1658, | ||
[3906] = 3813, | ||
[3907] = 3817, | ||
[3908] = 1619, | ||
[3909] = 12799, | ||
[3910] = 2105, | ||
[3911] = 1614, | ||
[3912] = 3806, | ||
[3913] = 3807, | ||
[3914] = 3809, | ||
[3915] = 1716, | ||
[3916] = 1724, | ||
[3917] = 1732, | ||
[3918] = 1775, | ||
[3919] = 1774, | ||
[3920] = 1750, | ||
[3921] = 3832, | ||
[3922] = 2095, | ||
[3923] = 2098, | ||
[3924] = 2064, | ||
[3925] = 2582, | ||
[3926] = 2117, | ||
[3927] = 1728, | ||
[3928] = 1442, | ||
[3929] = 1446, | ||
[3930] = 1447, | ||
[3931] = 2034, | ||
[3932] = 2604, | ||
[3933] = 2080, | ||
[3934] = 2084, | ||
[3935] = 3821, | ||
[3936] = 3811, | ||
[3937] = 2101, | ||
[3938] = 3812, | ||
[5086] = 5046, | ||
[5087] = 5055, | ||
[5088] = 5056, | ||
[6114] = 6111, | ||
[6115] = 6109, | ||
[6372] = 6356, | ||
[6373] = 6371, | ||
[8692] = 8688, | ||
[9974] = 9975, | ||
[11126] = 11127, | ||
[11133] = 11129, | ||
[11124] = 11125, | ||
[11205] = 11203 | ||
} | ||
|
||
function onUse(player, item, fromPosition, target, toPosition, isHotkey) | ||
local kit = constructionKits[item.itemid] | ||
if not kit then return false end | ||
|
||
local tile = Tile(item:getPosition()) | ||
if tile and tile:getHouse() then | ||
if fromPosition.x ~= CONTAINER_POSITION then | ||
item:transform(kit) | ||
fromPosition:sendMagicEffect(CONST_ME_POFF) | ||
else | ||
player:sendTextMessage(MESSAGE_STATUS_SMALL, "Put the construction kit on the floor first.") | ||
end | ||
else | ||
player:sendTextMessage(MESSAGE_STATUS_SMALL, "You may construct this only inside a house.") | ||
end | ||
return true | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.