Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Assault !st tiers, assault global, appraisal global #388

Closed
wants to merge 44 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
be8be08
add missing entry points and unlock assaults
KnowOne134 Feb 24, 2020
dd15fcf
add assault and appraisal globals
KnowOne134 Feb 24, 2020
00a24c0
Arr. Reef npcs
KnowOne134 Feb 24, 2020
abc4f39
B Thinckets npcs
KnowOne134 Feb 24, 2020
d3612c3
C Mire npcs
KnowOne134 Feb 24, 2020
81d788a
assaults Ilrusi Atoll
KnowOne134 Feb 24, 2020
3289d91
lebros carvern
KnowOne134 Feb 24, 2020
45d0b89
L Sanctum
KnowOne134 Feb 24, 2020
bf2b874
Mammol T grounds
KnowOne134 Feb 24, 2020
4546e47
mount z npcs
KnowOne134 Feb 24, 2020
adad5e9
Periqia
KnowOne134 Feb 24, 2020
c601e5d
adjust Rytall
KnowOne134 Feb 24, 2020
0d3a767
runic portal edits
KnowOne134 Feb 24, 2020
b0e7d37
split effect of omerta also casting checks while being mounted or res…
KnowOne134 Feb 24, 2020
27e1209
dont clear entities on a winning condition
KnowOne134 Feb 24, 2020
e76d482
appraisal core
KnowOne134 Feb 24, 2020
88ec61a
get level cap for assaults
KnowOne134 Feb 24, 2020
63a7294
add nyzul
KnowOne134 Feb 24, 2020
9bf2e66
error on item name
KnowOne134 Feb 24, 2020
564a7e6
quirin tp moves list
KnowOne134 Feb 24, 2020
46c4751
nyzul spawn changes
KnowOne134 Feb 24, 2020
90c2b2a
name change
KnowOne134 Feb 24, 2020
4dccba5
nyzul global and add appraisal items from nyzul
KnowOne134 Feb 24, 2020
7b503c5
add new tp moves
KnowOne134 Feb 24, 2020
2d3b843
un commit npcs
KnowOne134 Feb 24, 2020
90c93c8
add Zalsuhm nyzule glbal
KnowOne134 Feb 24, 2020
48ee966
nyzul investigattion scripts
KnowOne134 Feb 24, 2020
23a3956
nill error fixes
KnowOne134 Feb 24, 2020
d5c171e
appraisal npcs
KnowOne134 Feb 24, 2020
d60887c
fix break
KnowOne134 Feb 24, 2020
190a677
last error in core
KnowOne134 Feb 24, 2020
99bcb89
add onMobSkillTarget core
KnowOne134 Feb 25, 2020
fe583ba
add a setting for toau strict content changes
KnowOne134 Feb 25, 2020
10f68ce
pet/master mixins for instances
KnowOne134 Feb 25, 2020
31743b6
branding
KnowOne134 Feb 25, 2020
8fb2844
edits
KnowOne134 Feb 25, 2020
d8ad328
working changes add instance check commands
KnowOne134 Feb 25, 2020
358bc66
assault event run out of order, restructure required
KnowOne134 Feb 25, 2020
7cdb5da
updated lists
KnowOne134 Feb 27, 2020
c65cb2a
updates
KnowOne134 Feb 27, 2020
9f51a70
update instance load sql
KnowOne134 Feb 27, 2020
f950913
complete imperial agent rescue and L. Cleansing
KnowOne134 Feb 28, 2020
d27d265
azure time change
KnowOne134 Feb 29, 2020
e5dfd4b
finish up excavation duty
KnowOne134 Mar 26, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions scripts/commands/checkinstance.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---------------------------------------------------------------------------------------------------
-- func: checkinstance
-- desc: Displays Stage and Progress inside instance
---------------------------------------------------------------------------------------------------

cmdprops =
{
permission = 1,
parameters = ""
};

function error(player, msg)
end

function onTrigger(player, progress)
local instance = player:getInstance()
local progress = instance:getProgress()
local stage = instance:getStage()

player:PrintToPlayer(string.format("Stage: %i Progress: %i", stage, progress))
end
20 changes: 20 additions & 0 deletions scripts/commands/setprogress.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---------------------------------------------------------------------------------------------------
-- func: setprogress
-- desc: changes progress inside instance
---------------------------------------------------------------------------------------------------

cmdprops =
{
permission = 1,
parameters = "i"
};

function error(player, msg)
end

function onTrigger(player, progress)
local instance = player:getInstance()
local start = instance:getProgress()
instance:setProgress(progress)
player:PrintToPlayer(string.format("Progress changed from %i to %i", start, progress))
end
20 changes: 20 additions & 0 deletions scripts/commands/setstage.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---------------------------------------------------------------------------------------------------
-- func: setstage
-- desc: changes stage inside instance
---------------------------------------------------------------------------------------------------

cmdprops =
{
permission = 1,
parameters = "i"
};

function error(player, msg)
end

function onTrigger(player, stage)
local instance = player:getInstance()
local start = instance:getStage()
instance:setStage(stage)
player:PrintToPlayer(string.format("Stage changed from %i to %i", start, stage))
end
Loading