2017-06-13 13:16:07 +02:00
|
|
|
--[[
|
2017-06-30 17:10:19 +02:00
|
|
|
Hello there script explorer!
|
2017-06-13 13:16:07 +02:00
|
|
|
|
|
|
|
With this you can add a "Fish Market" to your World
|
|
|
|
You can earn fish by killing alot of biters or by mining wood, ores, rocks.
|
2017-12-19 19:10:15 +02:00
|
|
|
To spawn the market, do "/market" in your chat ingame as the games host.
|
2017-06-13 13:16:07 +02:00
|
|
|
It will spawn a few tiles north of the current position where your character is.
|
|
|
|
|
|
|
|
---MewMew---
|
2017-06-30 17:10:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
!! now with speed boost item addon from air20 !!
|
|
|
|
|
|
|
|
to be added(maybe)
|
|
|
|
fix pet health at refresh
|
|
|
|
make pet faster
|
|
|
|
make pet follow you moar
|
2017-06-13 13:16:07 +02:00
|
|
|
--]]
|
2018-06-01 23:23:51 +02:00
|
|
|
local Event = require 'utils.event'
|
|
|
|
local Token = require 'utils.global_token'
|
|
|
|
local Task = require 'utils.Task'
|
2018-11-11 09:20:07 +02:00
|
|
|
local PlayerStats = require 'features.player_stats'
|
2018-09-23 00:25:13 +02:00
|
|
|
local Game = require 'utils.game'
|
2018-11-06 13:55:52 +02:00
|
|
|
local Utils = require 'utils.utils'
|
2017-06-13 13:16:07 +02:00
|
|
|
|
2018-08-21 12:50:14 +02:00
|
|
|
local Market_items = require 'resources.market_items'
|
|
|
|
local market_item = Market_items.market_item
|
2018-11-19 00:30:23 +02:00
|
|
|
local fish_market_bonus_message = require 'resources.fish_messages'
|
|
|
|
local total_fish_market_bonus_messages = #fish_market_bonus_message
|
2018-04-06 21:58:50 +02:00
|
|
|
|
2018-05-19 14:53:29 +02:00
|
|
|
local function spawn_market(cmd)
|
2018-08-06 18:48:22 +02:00
|
|
|
local player = game.player
|
|
|
|
if not player or not player.admin then
|
2018-11-06 13:55:52 +02:00
|
|
|
Utils.cant_run(cmd.name)
|
2018-06-01 23:23:51 +02:00
|
|
|
return
|
|
|
|
end
|
2018-09-11 16:07:53 +02:00
|
|
|
|
2018-08-06 18:48:22 +02:00
|
|
|
local surface = player.surface
|
|
|
|
local force = player.force
|
2017-06-13 13:16:07 +02:00
|
|
|
|
2018-08-06 18:48:22 +02:00
|
|
|
local pos = player.position
|
|
|
|
pos.y = pos.y - 4
|
2017-06-13 13:16:07 +02:00
|
|
|
|
2018-08-06 18:48:22 +02:00
|
|
|
local market = surface.create_entity {name = 'market', position = pos}
|
2018-06-01 23:23:51 +02:00
|
|
|
market.destructible = false
|
|
|
|
|
2018-08-21 12:50:14 +02:00
|
|
|
for _, item in ipairs(Market_items) do
|
2018-06-01 23:23:51 +02:00
|
|
|
market.add_market_item(item)
|
|
|
|
end
|
2018-08-06 18:48:22 +02:00
|
|
|
|
|
|
|
force.add_chart_tag(
|
|
|
|
surface,
|
|
|
|
{
|
2018-08-21 12:50:14 +02:00
|
|
|
icon = {type = 'item', name = market_item},
|
2018-08-06 18:48:22 +02:00
|
|
|
position = pos,
|
|
|
|
text = ' Market'
|
|
|
|
}
|
|
|
|
)
|
2018-06-01 23:23:51 +02:00
|
|
|
end
|
|
|
|
|
2018-06-27 15:48:04 +02:00
|
|
|
local function fish_earned(event, amount)
|
|
|
|
local player_index = event.player_index
|
2018-09-23 12:46:58 +02:00
|
|
|
local player = Game.get_player_by_index(player_index)
|
2018-07-01 15:06:02 +02:00
|
|
|
|
2018-08-21 12:50:14 +02:00
|
|
|
local stack = {name = market_item, count = amount}
|
2018-07-01 15:06:02 +02:00
|
|
|
local inserted = player.insert(stack)
|
|
|
|
|
|
|
|
local diff = amount - inserted
|
|
|
|
if diff > 0 then
|
|
|
|
stack.count = diff
|
|
|
|
player.surface.spill_item_stack(player.position, stack, true)
|
|
|
|
end
|
2018-06-01 23:23:51 +02:00
|
|
|
|
2018-08-06 18:48:22 +02:00
|
|
|
local fish = PlayerStats.get_coin_earned(player_index)
|
2018-06-27 15:48:04 +02:00
|
|
|
fish = fish + amount
|
2018-08-06 18:48:22 +02:00
|
|
|
PlayerStats.set_coin_earned(player_index, fish)
|
2018-06-01 23:23:51 +02:00
|
|
|
|
2018-06-27 15:48:04 +02:00
|
|
|
if fish % 70 == 0 then
|
|
|
|
if player and player.valid then
|
|
|
|
local message = fish_market_bonus_message[math.random(total_fish_market_bonus_messages)]
|
|
|
|
player.print(message)
|
|
|
|
end
|
2018-06-01 23:23:51 +02:00
|
|
|
end
|
2017-06-13 13:16:07 +02:00
|
|
|
end
|
|
|
|
|
2017-12-15 19:23:55 +02:00
|
|
|
local function pre_player_mined_item(event)
|
2018-06-01 23:23:51 +02:00
|
|
|
if event.entity.type == 'simple-entity' then -- Cheap check for rock, may have other side effects
|
|
|
|
fish_earned(event, 10)
|
2018-06-27 15:48:04 +02:00
|
|
|
return
|
2018-06-01 23:23:51 +02:00
|
|
|
end
|
2017-06-13 13:16:07 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
if event.entity.type == 'tree' then
|
|
|
|
local x = math.random(1, 4)
|
|
|
|
if x == 1 then
|
|
|
|
fish_earned(event, 4)
|
|
|
|
end
|
|
|
|
end
|
2017-06-13 13:16:07 +02:00
|
|
|
end
|
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
local entity_drop_amount = {
|
2018-06-27 15:48:04 +02:00
|
|
|
--[[['small-biter'] = {low = -62, high = 1},
|
2018-06-01 23:23:51 +02:00
|
|
|
['small-spitter'] = {low = -62, high = 1},
|
|
|
|
['medium-biter'] = {low = -14, high = 1},
|
|
|
|
['medium-spitter'] = {low = -14, high = 1},
|
|
|
|
['big-biter'] = {low = -2, high = 1},
|
|
|
|
['big-spitter'] = {low = -2, high = 1},
|
|
|
|
['behemoth-biter'] = {low = 1, high = 1},
|
2018-06-16 13:57:11 +02:00
|
|
|
['behemoth-spitter'] = {low = 1, high = 1}, ]]
|
2018-06-01 23:23:51 +02:00
|
|
|
['biter-spawner'] = {low = 5, high = 15},
|
|
|
|
['spitter-spawner'] = {low = 5, high = 15},
|
|
|
|
['small-worm-turret'] = {low = 2, high = 8},
|
|
|
|
['medium-worm-turret'] = {low = 5, high = 15},
|
|
|
|
['big-worm-turret'] = {low = 10, high = 20}
|
|
|
|
}
|
|
|
|
|
|
|
|
local spill_items =
|
|
|
|
Token.register(
|
|
|
|
function(data)
|
2018-08-21 12:50:14 +02:00
|
|
|
local stack = {name = market_item, count = data.count}
|
2018-06-01 23:23:51 +02:00
|
|
|
data.surface.spill_item_stack(data.position, stack, true)
|
|
|
|
end
|
|
|
|
)
|
|
|
|
|
2017-06-13 13:16:07 +02:00
|
|
|
local function fish_drop_entity_died(event)
|
2018-06-01 23:23:51 +02:00
|
|
|
local entity = event.entity
|
|
|
|
if not entity or not entity.valid then
|
|
|
|
return
|
|
|
|
end
|
2017-06-30 17:10:19 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
local bounds = entity_drop_amount[entity.name]
|
|
|
|
if not bounds then
|
|
|
|
return
|
|
|
|
end
|
2017-10-25 18:45:35 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
local count = math.random(bounds.low, bounds.high)
|
2017-10-25 18:45:35 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
if count > 0 then
|
|
|
|
Task.set_timeout_in_ticks(1, spill_items, {count = count, surface = entity.surface, position = entity.position})
|
|
|
|
end
|
2017-06-13 13:16:07 +02:00
|
|
|
end
|
2018-11-20 12:46:19 +02:00
|
|
|
--
|
2017-06-13 13:16:07 +02:00
|
|
|
|
2018-11-19 00:30:23 +02:00
|
|
|
--[[
|
2018-04-05 15:43:42 +02:00
|
|
|
local function pet(player, entity_name)
|
2018-06-01 23:23:51 +02:00
|
|
|
if not player then
|
|
|
|
player = game.connected_players[1]
|
|
|
|
else
|
2018-09-23 12:46:58 +02:00
|
|
|
player = game.players[player]
|
2018-06-01 23:23:51 +02:00
|
|
|
end
|
|
|
|
if not entity_name then
|
|
|
|
entity_name = 'small-biter'
|
|
|
|
end
|
|
|
|
if not global.player_pets then
|
|
|
|
global.player_pets = {}
|
|
|
|
end
|
2017-07-19 11:54:46 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
local surface = player.surface
|
2017-07-19 11:54:46 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
local pos = player.position
|
|
|
|
pos.y = pos.y + 1
|
2017-07-19 11:54:46 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
local x = 1
|
|
|
|
x = x + #global.player_pets
|
2017-06-30 17:10:19 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
global.player_pets[x] = {}
|
|
|
|
global.player_pets[x].entity = surface.create_entity {name = entity_name, position = pos, force = 'player'}
|
|
|
|
global.player_pets[x].owner = player.index
|
|
|
|
global.player_pets[x].id = x
|
2017-06-30 17:10:19 +02:00
|
|
|
end
|
2018-11-19 00:30:23 +02:00
|
|
|
]]--
|
2017-06-30 17:10:19 +02:00
|
|
|
|
|
|
|
local function reset_player_runningspeed(player)
|
2018-06-01 23:23:51 +02:00
|
|
|
player.character_running_speed_modifier = global.player_speed_boost_records[player.index].pre_boost_modifier
|
|
|
|
global.player_speed_boost_records[player.index] = nil
|
2017-06-30 17:10:19 +02:00
|
|
|
end
|
|
|
|
|
2018-06-29 13:18:35 +02:00
|
|
|
local function boost_player_runningspeed(player, market)
|
2018-06-01 23:23:51 +02:00
|
|
|
if global.player_speed_boost_records == nil then
|
|
|
|
global.player_speed_boost_records = {}
|
|
|
|
end
|
2017-06-30 17:10:19 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
if global.player_speed_boost_records[player.index] == nil then
|
|
|
|
global.player_speed_boost_records[player.index] = {
|
|
|
|
start_tick = game.tick,
|
|
|
|
pre_boost_modifier = player.character_running_speed_modifier,
|
|
|
|
boost_lvl = 0
|
|
|
|
}
|
|
|
|
end
|
|
|
|
local boost_msg = {
|
|
|
|
[1] = '%s found the lost Dragon Scroll and got a lv.1 speed boost!',
|
|
|
|
[2] = 'Guided by Master Oogway, %s got a lv.2 speed boost!',
|
|
|
|
[3] = 'Kungfu Master %s defended the village and was awarded a lv.3 speed boost!',
|
|
|
|
[4] = 'Travelled at the speed of light. %s saw a blackhole. Oops.'
|
2017-06-30 17:10:19 +02:00
|
|
|
}
|
2018-11-20 12:46:19 +02:00
|
|
|
global.player_speed_boost_records[player.index].boost_lvl = 1 + global.player_speed_boost_records[player.index].boost_lvl
|
2018-06-01 23:23:51 +02:00
|
|
|
player.character_running_speed_modifier = 1 + player.character_running_speed_modifier
|
2018-08-14 13:46:35 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
if global.player_speed_boost_records[player.index].boost_lvl >= 4 then
|
2018-08-14 13:49:12 +02:00
|
|
|
game.print(string.format(boost_msg[global.player_speed_boost_records[player.index].boost_lvl], player.name))
|
2018-06-01 23:23:51 +02:00
|
|
|
reset_player_runningspeed(player)
|
2018-06-29 13:18:35 +02:00
|
|
|
player.character.die(player.force, market)
|
2018-08-14 13:46:35 +02:00
|
|
|
return
|
2018-06-01 23:23:51 +02:00
|
|
|
end
|
2018-08-14 13:46:35 +02:00
|
|
|
|
|
|
|
player.print(string.format(boost_msg[global.player_speed_boost_records[player.index].boost_lvl], player.name))
|
2017-06-30 17:10:19 +02:00
|
|
|
end
|
|
|
|
|
2017-11-20 18:17:42 +02:00
|
|
|
local function reset_player_miningspeed(player)
|
2018-06-01 23:23:51 +02:00
|
|
|
player.character_mining_speed_modifier = global.player_mining_boost_records[player.index].pre_mining_boost_modifier
|
|
|
|
global.player_mining_boost_records[player.index] = nil
|
2017-11-20 18:17:42 +02:00
|
|
|
end
|
|
|
|
|
2018-06-29 13:18:35 +02:00
|
|
|
local function boost_player_miningspeed(player, market)
|
2018-06-01 23:23:51 +02:00
|
|
|
if global.player_mining_boost_records == nil then
|
|
|
|
global.player_mining_boost_records = {}
|
|
|
|
end
|
2017-11-20 18:17:42 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
if global.player_mining_boost_records[player.index] == nil then
|
|
|
|
global.player_mining_boost_records[player.index] = {
|
|
|
|
start_tick = game.tick,
|
|
|
|
pre_mining_boost_modifier = player.character_mining_speed_modifier,
|
|
|
|
boost_lvl = 0
|
|
|
|
}
|
|
|
|
end
|
|
|
|
local boost_msg = {
|
|
|
|
[1] = '%s is going on a tree harvest!',
|
|
|
|
[2] = 'In search of a sharper axe, %s got a lv.2 mining boost!',
|
|
|
|
[3] = 'Wood fiend, %s, has picked up a massive chain saw and is awarded a lv.3 mining boost!',
|
|
|
|
[4] = 'Better learn to control that saw, %s, chopped off their legs. Oops.'
|
2017-11-20 18:17:42 +02:00
|
|
|
}
|
2018-11-20 12:46:19 +02:00
|
|
|
global.player_mining_boost_records[player.index].boost_lvl = 1 + global.player_mining_boost_records[player.index].boost_lvl
|
2018-06-01 23:23:51 +02:00
|
|
|
player.character_mining_speed_modifier = 1 + player.character_mining_speed_modifier
|
2018-08-14 13:46:35 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
if global.player_mining_boost_records[player.index].boost_lvl >= 4 then
|
2018-08-14 13:49:12 +02:00
|
|
|
game.print(string.format(boost_msg[global.player_mining_boost_records[player.index].boost_lvl], player.name))
|
2018-06-01 23:23:51 +02:00
|
|
|
reset_player_miningspeed(player)
|
2018-06-29 13:18:35 +02:00
|
|
|
player.character.die(player.force, market)
|
2018-08-14 13:46:35 +02:00
|
|
|
return
|
2018-06-01 23:23:51 +02:00
|
|
|
end
|
2018-08-14 13:46:35 +02:00
|
|
|
|
|
|
|
player.print(string.format(boost_msg[global.player_mining_boost_records[player.index].boost_lvl], player.name))
|
2017-11-20 18:17:42 +02:00
|
|
|
end
|
|
|
|
|
2017-06-30 17:10:19 +02:00
|
|
|
local function market_item_purchased(event)
|
2018-06-01 23:23:51 +02:00
|
|
|
local market = event.market
|
|
|
|
if not market or not market.valid then
|
|
|
|
return
|
|
|
|
end
|
2017-06-30 17:10:19 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
local offer_index = event.offer_index
|
|
|
|
local player_index = event.player_index
|
2017-06-30 17:10:19 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
-- cost
|
|
|
|
local market_item = market.get_market_items()[offer_index]
|
|
|
|
local fish_cost = market_item.price[1].amount * event.count
|
2018-06-27 15:48:04 +02:00
|
|
|
|
2018-08-06 18:48:22 +02:00
|
|
|
PlayerStats.change_coin_spent(player_index, fish_cost)
|
2017-10-15 13:33:51 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
if event.offer_index == 1 then -- Temporary speed bonus
|
2018-09-23 12:46:58 +02:00
|
|
|
local player = Game.get_player_by_index(player_index)
|
2018-06-29 13:18:35 +02:00
|
|
|
boost_player_runningspeed(player, market)
|
2018-06-01 23:23:51 +02:00
|
|
|
end
|
2017-11-20 18:17:42 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
if event.offer_index == 2 then -- Temporary mining bonus
|
2018-09-23 12:46:58 +02:00
|
|
|
local player = Game.get_player_by_index(player_index)
|
2018-06-29 13:18:35 +02:00
|
|
|
boost_player_miningspeed(player, market)
|
2018-06-01 23:23:51 +02:00
|
|
|
end
|
2017-07-19 11:54:46 +02:00
|
|
|
|
2018-11-18 17:23:51 +02:00
|
|
|
if event.offer_index == 3 then -- train saviour item
|
|
|
|
local player = Game.get_player_by_index(player_index)
|
|
|
|
local train_savior_item = Market_items[offer_index].item
|
2018-11-20 12:46:19 +02:00
|
|
|
player.insert {name = train_savior_item, count = event.count}
|
2018-11-18 17:23:51 +02:00
|
|
|
end
|
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
--[[
|
2017-12-19 19:10:15 +02:00
|
|
|
if event.offer_index == 2 then
|
|
|
|
player.remove_item({name="small-plane", count=event.count})
|
|
|
|
local chance = 4
|
|
|
|
local x = math.random(1,3)
|
|
|
|
if x < 3 then
|
|
|
|
local x = math.random(1,chance)
|
|
|
|
if x < chance then
|
|
|
|
rolled_pet = "small-biter"
|
|
|
|
else
|
|
|
|
local x = math.random(1,chance)
|
|
|
|
if x < chance then
|
|
|
|
rolled_pet = "medium-biter"
|
|
|
|
else
|
|
|
|
local x = math.random(1,chance)
|
|
|
|
if x < chance then
|
|
|
|
rolled_pet = "big-biter"
|
|
|
|
else
|
|
|
|
rolled_pet = "behemoth-biter"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
local x = math.random(1,chance)
|
|
|
|
if x < chance then
|
|
|
|
rolled_pet = "small-spitter"
|
|
|
|
else
|
|
|
|
local x = math.random(1,chance)
|
|
|
|
if x < chance then
|
|
|
|
rolled_pet = "medium-spitter"
|
|
|
|
else
|
|
|
|
local x = math.random(1,chance)
|
|
|
|
if x < chance then
|
|
|
|
rolled_pet = "big-spitter"
|
|
|
|
else
|
|
|
|
rolled_pet = "behemoth-spitter"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local str = string.format("%s bought his very own pet %s at the fish market!!", player.name, rolled_pet)
|
|
|
|
game.print(str)
|
|
|
|
pet(event.player_index, rolled_pet)
|
|
|
|
end
|
2018-04-05 15:43:42 +02:00
|
|
|
--]]
|
2017-06-30 17:10:19 +02:00
|
|
|
end
|
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
if not global.pet_command_rotation then
|
|
|
|
global.pet_command_rotation = 1
|
|
|
|
end
|
2017-06-30 17:10:19 +02:00
|
|
|
|
2018-05-19 14:53:29 +02:00
|
|
|
local function on_180_ticks()
|
2018-06-01 23:23:51 +02:00
|
|
|
if game.tick % 900 == 0 then
|
|
|
|
if global.player_speed_boost_records then
|
|
|
|
for k, v in pairs(global.player_speed_boost_records) do
|
|
|
|
if game.tick - v.start_tick > 3000 then
|
2018-11-19 00:30:23 +02:00
|
|
|
local player = Game.get_player_by_index(k)
|
|
|
|
if player.connected and player.character then
|
|
|
|
reset_player_runningspeed(player)
|
|
|
|
end
|
2018-06-01 23:23:51 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-11-19 00:30:23 +02:00
|
|
|
|
2018-06-01 23:23:51 +02:00
|
|
|
if global.player_mining_boost_records then
|
|
|
|
for k, v in pairs(global.player_mining_boost_records) do
|
|
|
|
if game.tick - v.start_tick > 6000 then
|
2018-11-19 00:30:23 +02:00
|
|
|
local player = Game.get_player_by_index(k)
|
|
|
|
if player.connected and player.character then
|
|
|
|
reset_player_miningspeed(player)
|
|
|
|
end
|
2018-06-01 23:23:51 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-06-30 17:10:19 +02:00
|
|
|
|
2018-11-19 00:30:23 +02:00
|
|
|
--[[
|
2018-06-01 23:23:51 +02:00
|
|
|
if global.player_pets then
|
|
|
|
for _, pets in pairs(global.player_pets) do
|
2018-09-23 12:46:58 +02:00
|
|
|
local player = game.players[pets.owner]
|
2018-06-01 23:23:51 +02:00
|
|
|
if
|
|
|
|
pcall(
|
|
|
|
function()
|
|
|
|
local x = pets.entity.name
|
|
|
|
end
|
|
|
|
)
|
|
|
|
then
|
|
|
|
if global.pet_command_rotation % 15 == 0 then
|
|
|
|
local surface = player.surface
|
|
|
|
local pet_pos = pets.entity.position
|
|
|
|
local pet_name = pets.entity.name
|
|
|
|
local pet_direction = pets.entity.direction
|
|
|
|
pets.entity.destroy()
|
|
|
|
pets.entity =
|
|
|
|
surface.create_entity {
|
|
|
|
name = pet_name,
|
|
|
|
position = pet_pos,
|
|
|
|
direction = pet_direction,
|
|
|
|
force = 'player'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
if global.pet_command_rotation % 2 == 1 then
|
|
|
|
pets.entity.set_command(
|
|
|
|
{
|
|
|
|
type = defines.command.go_to_location,
|
|
|
|
destination = player.position,
|
|
|
|
distraction = defines.distraction.none
|
|
|
|
}
|
|
|
|
)
|
|
|
|
else
|
|
|
|
local fake_pos = pets.entity.position
|
|
|
|
pets.entity.set_command(
|
|
|
|
{
|
|
|
|
type = defines.command.go_to_location,
|
|
|
|
destination = fake_pos,
|
|
|
|
distraction = defines.distraction.none
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
global.player_pets[pets.id] = nil
|
|
|
|
local str = player.name .. '´s pet died ;_;'
|
|
|
|
game.print(str)
|
2017-11-20 18:17:42 +02:00
|
|
|
end
|
2018-06-01 23:23:51 +02:00
|
|
|
end
|
|
|
|
global.pet_command_rotation = global.pet_command_rotation + 1
|
|
|
|
end
|
2018-11-19 00:30:23 +02:00
|
|
|
]]--
|
2017-06-30 17:10:19 +02:00
|
|
|
end
|
|
|
|
|
2018-05-19 14:53:29 +02:00
|
|
|
local function fish_player_crafted_item(event)
|
2018-06-01 23:23:51 +02:00
|
|
|
local x = math.random(1, 50)
|
|
|
|
if x == 1 then
|
|
|
|
fish_earned(event, 1)
|
|
|
|
end
|
2017-10-15 13:33:51 +02:00
|
|
|
end
|
2017-06-30 17:10:19 +02:00
|
|
|
|
2018-09-18 15:57:29 +02:00
|
|
|
local function init()
|
2018-11-19 00:30:23 +02:00
|
|
|
if global.scenario.config.fish_market.enable then
|
|
|
|
commands.add_command('market', 'Places a fish market near you. (Admins only)', spawn_market)
|
|
|
|
|
|
|
|
Event.on_nth_tick(180, on_180_ticks)
|
|
|
|
Event.add(defines.events.on_pre_player_mined_item, pre_player_mined_item)
|
|
|
|
Event.add(defines.events.on_entity_died, fish_drop_entity_died)
|
|
|
|
Event.add(defines.events.on_market_item_purchased, market_item_purchased)
|
|
|
|
Event.add(defines.events.on_player_crafted_item, fish_player_crafted_item)
|
|
|
|
end
|
2018-09-12 08:41:56 +02:00
|
|
|
end
|
2018-11-19 00:30:23 +02:00
|
|
|
|
2018-09-12 08:41:56 +02:00
|
|
|
Event.on_init(init)
|
|
|
|
Event.on_load(init)
|