mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-28 15:17:46 +00:00
Merge pull request #425 from NotAdam/housing
move all script classes to Sapphire::ScriptAPI namespace
This commit is contained in:
commit
24f0cb5df7
335 changed files with 1037 additions and 990 deletions
|
@ -31,7 +31,7 @@ foreach(_scriptDir ${children})
|
||||||
set(ScriptIncludes "#include \"${_script}\"")
|
set(ScriptIncludes "#include \"${_script}\"")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(ScriptNames "${ScriptNames} static_cast< ScriptObject* >( new ${_scriptname} ),\n")
|
set(ScriptNames "${ScriptNames} static_cast< Sapphire::ScriptAPI::ScriptObject* >( new ${_scriptname} ),\n")
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
@ScriptIncludes@
|
@ScriptIncludes@
|
||||||
|
|
||||||
const ScriptObject* ptrs[] =
|
const Sapphire::ScriptAPI::ScriptObject* ptrs[] =
|
||||||
{
|
{
|
||||||
@ScriptNames@
|
@ScriptNames@
|
||||||
nullptr
|
nullptr
|
||||||
};
|
};
|
||||||
|
|
||||||
extern "C" EXPORT const ScriptObject** getScripts()
|
extern "C" EXPORT const Sapphire::ScriptAPI::ScriptObject** getScripts()
|
||||||
{
|
{
|
||||||
return ptrs;
|
return ptrs;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,11 +3,11 @@
|
||||||
#include <Actor/Player.h>
|
#include <Actor/Player.h>
|
||||||
|
|
||||||
class ActionReturn6 :
|
class ActionReturn6 :
|
||||||
public ActionScript
|
public Sapphire::ScriptAPI::ActionScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ActionReturn6() :
|
ActionReturn6() :
|
||||||
ActionScript( 6 )
|
Sapphire::ScriptAPI::ActionScript( 6 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
#include <Actor/Player.h>
|
#include <Actor/Player.h>
|
||||||
|
|
||||||
class ActionSprint3 :
|
class ActionSprint3 :
|
||||||
public ActionScript
|
public Sapphire::ScriptAPI::ActionScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ActionSprint3() :
|
ActionSprint3() :
|
||||||
ActionScript( 3 )
|
Sapphire::ScriptAPI::ActionScript( 3 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,11 +13,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class Aethernet :
|
class Aethernet :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Aethernet() :
|
Aethernet() :
|
||||||
EventScript( EVENTSCRIPT_AETHERNET_ID )
|
Sapphire::ScriptAPI::EventScript( EVENTSCRIPT_AETHERNET_ID )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,11 +15,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class Aetheryte :
|
class Aetheryte :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Aetheryte() :
|
Aetheryte() :
|
||||||
EventScript( EVENTSCRIPT_AETHERYTE_ID )
|
Sapphire::ScriptAPI::EventScript( EVENTSCRIPT_AETHERYTE_ID )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CmnDefCutSceneReplay :
|
class CmnDefCutSceneReplay :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CmnDefCutSceneReplay() :
|
CmnDefCutSceneReplay() :
|
||||||
EventScript( 721028 )
|
Sapphire::ScriptAPI::EventScript( 721028 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,10 +11,10 @@ using namespace Network;
|
||||||
using namespace Packets;
|
using namespace Packets;
|
||||||
using namespace Server;
|
using namespace Server;
|
||||||
|
|
||||||
class CmnDefHousingSignboard : public EventScript
|
class CmnDefHousingSignboard : public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CmnDefHousingSignboard() : EventScript( 721031 )
|
CmnDefHousingSignboard() : Sapphire::ScriptAPI::EventScript( 721031 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CmnDefInnBed :
|
class CmnDefInnBed :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CmnDefInnBed() :
|
CmnDefInnBed() :
|
||||||
EventScript( 720916 )
|
Sapphire::ScriptAPI::EventScript( 720916 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,11 +8,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CmnDefLinkShell :
|
class CmnDefLinkShell :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CmnDefLinkShell() :
|
CmnDefLinkShell() :
|
||||||
EventScript( 0xB0006 )
|
Sapphire::ScriptAPI::EventScript( 0xB0006 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CmnDefMarketBoardGridania :
|
class CmnDefMarketBoardGridania :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CmnDefMarketBoardGridania() :
|
CmnDefMarketBoardGridania() :
|
||||||
EventScript( 0xB0027 )
|
Sapphire::ScriptAPI::EventScript( 0xB0027 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CmnDefMogLetter :
|
class CmnDefMogLetter :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CmnDefMogLetter() :
|
CmnDefMogLetter() :
|
||||||
EventScript( 720898 )
|
Sapphire::ScriptAPI::EventScript( 720898 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CmnDefNpcRepair :
|
class CmnDefNpcRepair :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CmnDefNpcRepair() :
|
CmnDefNpcRepair() :
|
||||||
EventScript( 0xB0013 )
|
Sapphire::ScriptAPI::EventScript( 0xB0013 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CmnDefWeatherForeCast :
|
class CmnDefWeatherForeCast :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CmnDefWeatherForeCast() :
|
CmnDefWeatherForeCast() :
|
||||||
EventScript( 721100 )
|
Sapphire::ScriptAPI::EventScript( 721100 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ComDefMobHuntBoard :
|
class ComDefMobHuntBoard :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ComDefMobHuntBoard() :
|
ComDefMobHuntBoard() :
|
||||||
EventScript( 0xB00CA )
|
Sapphire::ScriptAPI::EventScript( 0xB00CA )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class GilShop :
|
class GilShop :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
GilShop() :
|
GilShop() :
|
||||||
EventScript( 0x00040001 )
|
Sapphire::ScriptAPI::EventScript( 0x00040001 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class HouFurOrchestrion :
|
class HouFurOrchestrion :
|
||||||
public EventScript
|
public Sapphire::ScriptAPI::EventScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
HouFurOrchestrion() :
|
HouFurOrchestrion() :
|
||||||
EventScript( 721226 )
|
Sapphire::ScriptAPI::EventScript( 721226 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors101110 :
|
class ThePalaceoftheDeadFloors101110 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors101110() :
|
ThePalaceoftheDeadFloors101110() :
|
||||||
InstanceContentScript( 60011 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60011 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors110 :
|
class ThePalaceoftheDeadFloors110 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors110() :
|
ThePalaceoftheDeadFloors110() :
|
||||||
InstanceContentScript( 60001 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60001 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors111120 :
|
class ThePalaceoftheDeadFloors111120 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors111120() :
|
ThePalaceoftheDeadFloors111120() :
|
||||||
InstanceContentScript( 60012 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60012 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors1120 :
|
class ThePalaceoftheDeadFloors1120 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors1120() :
|
ThePalaceoftheDeadFloors1120() :
|
||||||
InstanceContentScript( 60002 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60002 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors121130 :
|
class ThePalaceoftheDeadFloors121130 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors121130() :
|
ThePalaceoftheDeadFloors121130() :
|
||||||
InstanceContentScript( 60013 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60013 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors131140 :
|
class ThePalaceoftheDeadFloors131140 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors131140() :
|
ThePalaceoftheDeadFloors131140() :
|
||||||
InstanceContentScript( 60014 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60014 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors141150 :
|
class ThePalaceoftheDeadFloors141150 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors141150() :
|
ThePalaceoftheDeadFloors141150() :
|
||||||
InstanceContentScript( 60015 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60015 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors151160 :
|
class ThePalaceoftheDeadFloors151160 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors151160() :
|
ThePalaceoftheDeadFloors151160() :
|
||||||
InstanceContentScript( 60016 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60016 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors161170 :
|
class ThePalaceoftheDeadFloors161170 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors161170() :
|
ThePalaceoftheDeadFloors161170() :
|
||||||
InstanceContentScript( 60017 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60017 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors171180 :
|
class ThePalaceoftheDeadFloors171180 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors171180() :
|
ThePalaceoftheDeadFloors171180() :
|
||||||
InstanceContentScript( 60018 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60018 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors181190 :
|
class ThePalaceoftheDeadFloors181190 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors181190() :
|
ThePalaceoftheDeadFloors181190() :
|
||||||
InstanceContentScript( 60019 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60019 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors191200 :
|
class ThePalaceoftheDeadFloors191200 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors191200() :
|
ThePalaceoftheDeadFloors191200() :
|
||||||
InstanceContentScript( 60020 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60020 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors2130 :
|
class ThePalaceoftheDeadFloors2130 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors2130() :
|
ThePalaceoftheDeadFloors2130() :
|
||||||
InstanceContentScript( 60003 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60003 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors3140 :
|
class ThePalaceoftheDeadFloors3140 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors3140() :
|
ThePalaceoftheDeadFloors3140() :
|
||||||
InstanceContentScript( 60004 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60004 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors4150 :
|
class ThePalaceoftheDeadFloors4150 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors4150() :
|
ThePalaceoftheDeadFloors4150() :
|
||||||
InstanceContentScript( 60005 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60005 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors5160 :
|
class ThePalaceoftheDeadFloors5160 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors5160() :
|
ThePalaceoftheDeadFloors5160() :
|
||||||
InstanceContentScript( 60006 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60006 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors6170 :
|
class ThePalaceoftheDeadFloors6170 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors6170() :
|
ThePalaceoftheDeadFloors6170() :
|
||||||
InstanceContentScript( 60007 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60007 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors7180 :
|
class ThePalaceoftheDeadFloors7180 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors7180() :
|
ThePalaceoftheDeadFloors7180() :
|
||||||
InstanceContentScript( 60008 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60008 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors8190 :
|
class ThePalaceoftheDeadFloors8190 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors8190() :
|
ThePalaceoftheDeadFloors8190() :
|
||||||
InstanceContentScript( 60009 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60009 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePalaceoftheDeadFloors91100 :
|
class ThePalaceoftheDeadFloors91100 :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePalaceoftheDeadFloors91100() :
|
ThePalaceoftheDeadFloors91100() :
|
||||||
InstanceContentScript( 60010 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60010 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class AlaMhigo :
|
class AlaMhigo :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
AlaMhigo() :
|
AlaMhigo() :
|
||||||
InstanceContentScript( 56 )
|
Sapphire::ScriptAPI::InstanceContentScript( 56 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class AmdaporKeep :
|
class AmdaporKeep :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
AmdaporKeep() :
|
AmdaporKeep() :
|
||||||
InstanceContentScript( 14 )
|
Sapphire::ScriptAPI::InstanceContentScript( 14 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class AmdaporKeepHard :
|
class AmdaporKeepHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
AmdaporKeepHard() :
|
AmdaporKeepHard() :
|
||||||
InstanceContentScript( 29 )
|
Sapphire::ScriptAPI::InstanceContentScript( 29 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class BaelsarsWall :
|
class BaelsarsWall :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
BaelsarsWall() :
|
BaelsarsWall() :
|
||||||
InstanceContentScript( 48 )
|
Sapphire::ScriptAPI::InstanceContentScript( 48 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class BardamsMettle :
|
class BardamsMettle :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
BardamsMettle() :
|
BardamsMettle() :
|
||||||
InstanceContentScript( 53 )
|
Sapphire::ScriptAPI::InstanceContentScript( 53 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class BrayfloxsLongstop :
|
class BrayfloxsLongstop :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
BrayfloxsLongstop() :
|
BrayfloxsLongstop() :
|
||||||
InstanceContentScript( 8 )
|
Sapphire::ScriptAPI::InstanceContentScript( 8 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class BrayfloxsLongstopHard :
|
class BrayfloxsLongstopHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
BrayfloxsLongstopHard() :
|
BrayfloxsLongstopHard() :
|
||||||
InstanceContentScript( 20 )
|
Sapphire::ScriptAPI::InstanceContentScript( 20 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CastrumAbania :
|
class CastrumAbania :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CastrumAbania() :
|
CastrumAbania() :
|
||||||
InstanceContentScript( 55 )
|
Sapphire::ScriptAPI::InstanceContentScript( 55 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CastrumMeridianum :
|
class CastrumMeridianum :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CastrumMeridianum() :
|
CastrumMeridianum() :
|
||||||
InstanceContentScript( 15 )
|
Sapphire::ScriptAPI::InstanceContentScript( 15 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CopperbellMines :
|
class CopperbellMines :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CopperbellMines() :
|
CopperbellMines() :
|
||||||
InstanceContentScript( 3 )
|
Sapphire::ScriptAPI::InstanceContentScript( 3 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CopperbellMinesHard :
|
class CopperbellMinesHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CopperbellMinesHard() :
|
CopperbellMinesHard() :
|
||||||
InstanceContentScript( 18 )
|
Sapphire::ScriptAPI::InstanceContentScript( 18 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class CuttersCry :
|
class CuttersCry :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CuttersCry() :
|
CuttersCry() :
|
||||||
InstanceContentScript( 12 )
|
Sapphire::ScriptAPI::InstanceContentScript( 12 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class DomaCastle :
|
class DomaCastle :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
DomaCastle() :
|
DomaCastle() :
|
||||||
InstanceContentScript( 54 )
|
Sapphire::ScriptAPI::InstanceContentScript( 54 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class DzemaelDarkhold :
|
class DzemaelDarkhold :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
DzemaelDarkhold() :
|
DzemaelDarkhold() :
|
||||||
InstanceContentScript( 13 )
|
Sapphire::ScriptAPI::InstanceContentScript( 13 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class Halatali :
|
class Halatali :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Halatali() :
|
Halatali() :
|
||||||
InstanceContentScript( 7 )
|
Sapphire::ScriptAPI::InstanceContentScript( 7 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class HalataliHard :
|
class HalataliHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
HalataliHard() :
|
HalataliHard() :
|
||||||
InstanceContentScript( 21 )
|
Sapphire::ScriptAPI::InstanceContentScript( 21 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class HaukkeManor :
|
class HaukkeManor :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
HaukkeManor() :
|
HaukkeManor() :
|
||||||
InstanceContentScript( 6 )
|
Sapphire::ScriptAPI::InstanceContentScript( 6 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class HaukkeManorHard :
|
class HaukkeManorHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
HaukkeManorHard() :
|
HaukkeManorHard() :
|
||||||
InstanceContentScript( 19 )
|
Sapphire::ScriptAPI::InstanceContentScript( 19 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class HellsLid :
|
class HellsLid :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
HellsLid() :
|
HellsLid() :
|
||||||
InstanceContentScript( 59 )
|
Sapphire::ScriptAPI::InstanceContentScript( 59 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class HullbreakerIsle :
|
class HullbreakerIsle :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
HullbreakerIsle() :
|
HullbreakerIsle() :
|
||||||
InstanceContentScript( 23 )
|
Sapphire::ScriptAPI::InstanceContentScript( 23 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class HullbreakerIsleHard :
|
class HullbreakerIsleHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
HullbreakerIsleHard() :
|
HullbreakerIsleHard() :
|
||||||
InstanceContentScript( 45 )
|
Sapphire::ScriptAPI::InstanceContentScript( 45 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class KuganeCastle :
|
class KuganeCastle :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
KuganeCastle() :
|
KuganeCastle() :
|
||||||
InstanceContentScript( 57 )
|
Sapphire::ScriptAPI::InstanceContentScript( 57 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class Neverreap :
|
class Neverreap :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Neverreap() :
|
Neverreap() :
|
||||||
InstanceContentScript( 33 )
|
Sapphire::ScriptAPI::InstanceContentScript( 33 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class PharosSirius :
|
class PharosSirius :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PharosSirius() :
|
PharosSirius() :
|
||||||
InstanceContentScript( 17 )
|
Sapphire::ScriptAPI::InstanceContentScript( 17 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class PharosSiriusHard :
|
class PharosSiriusHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PharosSiriusHard() :
|
PharosSiriusHard() :
|
||||||
InstanceContentScript( 40 )
|
Sapphire::ScriptAPI::InstanceContentScript( 40 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class SaintMociannesArboretum :
|
class SaintMociannesArboretum :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
SaintMociannesArboretum() :
|
SaintMociannesArboretum() :
|
||||||
InstanceContentScript( 41 )
|
Sapphire::ScriptAPI::InstanceContentScript( 41 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class Sastasha :
|
class Sastasha :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Sastasha() :
|
Sastasha() :
|
||||||
InstanceContentScript( 4 )
|
Sapphire::ScriptAPI::InstanceContentScript( 4 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class SastashaHard :
|
class SastashaHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
SastashaHard() :
|
SastashaHard() :
|
||||||
InstanceContentScript( 28 )
|
Sapphire::ScriptAPI::InstanceContentScript( 28 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ShisuioftheVioletTides :
|
class ShisuioftheVioletTides :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ShisuioftheVioletTides() :
|
ShisuioftheVioletTides() :
|
||||||
InstanceContentScript( 50 )
|
Sapphire::ScriptAPI::InstanceContentScript( 50 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class Snowcloak :
|
class Snowcloak :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Snowcloak() :
|
Snowcloak() :
|
||||||
InstanceContentScript( 27 )
|
Sapphire::ScriptAPI::InstanceContentScript( 27 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class SohmAl :
|
class SohmAl :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
SohmAl() :
|
SohmAl() :
|
||||||
InstanceContentScript( 37 )
|
Sapphire::ScriptAPI::InstanceContentScript( 37 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class SohmAlHard :
|
class SohmAlHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
SohmAlHard() :
|
SohmAlHard() :
|
||||||
InstanceContentScript( 49 )
|
Sapphire::ScriptAPI::InstanceContentScript( 49 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class SohrKhai :
|
class SohrKhai :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
SohrKhai() :
|
SohrKhai() :
|
||||||
InstanceContentScript( 44 )
|
Sapphire::ScriptAPI::InstanceContentScript( 44 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheAery :
|
class TheAery :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheAery() :
|
TheAery() :
|
||||||
InstanceContentScript( 39 )
|
Sapphire::ScriptAPI::InstanceContentScript( 39 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheAetherochemicalResearchFacility :
|
class TheAetherochemicalResearchFacility :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheAetherochemicalResearchFacility() :
|
TheAetherochemicalResearchFacility() :
|
||||||
InstanceContentScript( 38 )
|
Sapphire::ScriptAPI::InstanceContentScript( 38 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheAntitower :
|
class TheAntitower :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheAntitower() :
|
TheAntitower() :
|
||||||
InstanceContentScript( 43 )
|
Sapphire::ScriptAPI::InstanceContentScript( 43 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheAurumVale :
|
class TheAurumVale :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheAurumVale() :
|
TheAurumVale() :
|
||||||
InstanceContentScript( 5 )
|
Sapphire::ScriptAPI::InstanceContentScript( 5 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheDrownedCityofSkalla :
|
class TheDrownedCityofSkalla :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheDrownedCityofSkalla() :
|
TheDrownedCityofSkalla() :
|
||||||
InstanceContentScript( 58 )
|
Sapphire::ScriptAPI::InstanceContentScript( 58 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheDuskVigil :
|
class TheDuskVigil :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheDuskVigil() :
|
TheDuskVigil() :
|
||||||
InstanceContentScript( 36 )
|
Sapphire::ScriptAPI::InstanceContentScript( 36 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheFractalContinuum :
|
class TheFractalContinuum :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheFractalContinuum() :
|
TheFractalContinuum() :
|
||||||
InstanceContentScript( 35 )
|
Sapphire::ScriptAPI::InstanceContentScript( 35 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheFractalContinuumHard :
|
class TheFractalContinuumHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheFractalContinuumHard() :
|
TheFractalContinuumHard() :
|
||||||
InstanceContentScript( 60 )
|
Sapphire::ScriptAPI::InstanceContentScript( 60 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheGreatGubalLibrary :
|
class TheGreatGubalLibrary :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheGreatGubalLibrary() :
|
TheGreatGubalLibrary() :
|
||||||
InstanceContentScript( 31 )
|
Sapphire::ScriptAPI::InstanceContentScript( 31 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheGreatGubalLibraryHard :
|
class TheGreatGubalLibraryHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheGreatGubalLibraryHard() :
|
TheGreatGubalLibraryHard() :
|
||||||
InstanceContentScript( 47 )
|
Sapphire::ScriptAPI::InstanceContentScript( 47 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheKeeperoftheLake :
|
class TheKeeperoftheLake :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheKeeperoftheLake() :
|
TheKeeperoftheLake() :
|
||||||
InstanceContentScript( 32 )
|
Sapphire::ScriptAPI::InstanceContentScript( 32 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheLostCityofAmdapor :
|
class TheLostCityofAmdapor :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheLostCityofAmdapor() :
|
TheLostCityofAmdapor() :
|
||||||
InstanceContentScript( 22 )
|
Sapphire::ScriptAPI::InstanceContentScript( 22 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheLostCityofAmdaporHard :
|
class TheLostCityofAmdaporHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheLostCityofAmdaporHard() :
|
TheLostCityofAmdaporHard() :
|
||||||
InstanceContentScript( 42 )
|
Sapphire::ScriptAPI::InstanceContentScript( 42 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class ThePraetorium :
|
class ThePraetorium :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThePraetorium() :
|
ThePraetorium() :
|
||||||
InstanceContentScript( 16 )
|
Sapphire::ScriptAPI::InstanceContentScript( 16 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheSirensongSea :
|
class TheSirensongSea :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheSirensongSea() :
|
TheSirensongSea() :
|
||||||
InstanceContentScript( 52 )
|
Sapphire::ScriptAPI::InstanceContentScript( 52 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheStoneVigil :
|
class TheStoneVigil :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheStoneVigil() :
|
TheStoneVigil() :
|
||||||
InstanceContentScript( 11 )
|
Sapphire::ScriptAPI::InstanceContentScript( 11 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheStoneVigilHard :
|
class TheStoneVigilHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheStoneVigilHard() :
|
TheStoneVigilHard() :
|
||||||
InstanceContentScript( 25 )
|
Sapphire::ScriptAPI::InstanceContentScript( 25 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheSunkenTempleofQarn :
|
class TheSunkenTempleofQarn :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheSunkenTempleofQarn() :
|
TheSunkenTempleofQarn() :
|
||||||
InstanceContentScript( 9 )
|
Sapphire::ScriptAPI::InstanceContentScript( 9 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheSunkenTempleofQarnHard :
|
class TheSunkenTempleofQarnHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheSunkenTempleofQarnHard() :
|
TheSunkenTempleofQarnHard() :
|
||||||
InstanceContentScript( 26 )
|
Sapphire::ScriptAPI::InstanceContentScript( 26 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheTamTaraDeepcroft :
|
class TheTamTaraDeepcroft :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheTamTaraDeepcroft() :
|
TheTamTaraDeepcroft() :
|
||||||
InstanceContentScript( 2 )
|
Sapphire::ScriptAPI::InstanceContentScript( 2 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheTamTaraDeepcroftHard :
|
class TheTamTaraDeepcroftHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheTamTaraDeepcroftHard() :
|
TheTamTaraDeepcroftHard() :
|
||||||
InstanceContentScript( 24 )
|
Sapphire::ScriptAPI::InstanceContentScript( 24 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheTempleoftheFist :
|
class TheTempleoftheFist :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheTempleoftheFist() :
|
TheTempleoftheFist() :
|
||||||
InstanceContentScript( 51 )
|
Sapphire::ScriptAPI::InstanceContentScript( 51 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheThousandMawsofTotoRak :
|
class TheThousandMawsofTotoRak :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheThousandMawsofTotoRak() :
|
TheThousandMawsofTotoRak() :
|
||||||
InstanceContentScript( 1 )
|
Sapphire::ScriptAPI::InstanceContentScript( 1 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheVault :
|
class TheVault :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheVault() :
|
TheVault() :
|
||||||
InstanceContentScript( 34 )
|
Sapphire::ScriptAPI::InstanceContentScript( 34 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheWanderersPalace :
|
class TheWanderersPalace :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheWanderersPalace() :
|
TheWanderersPalace() :
|
||||||
InstanceContentScript( 10 )
|
Sapphire::ScriptAPI::InstanceContentScript( 10 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheWanderersPalaceHard :
|
class TheWanderersPalaceHard :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheWanderersPalaceHard() :
|
TheWanderersPalaceHard() :
|
||||||
InstanceContentScript( 30 )
|
Sapphire::ScriptAPI::InstanceContentScript( 30 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class Xelphatol :
|
class Xelphatol :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Xelphatol() :
|
Xelphatol() :
|
||||||
InstanceContentScript( 46 )
|
Sapphire::ScriptAPI::InstanceContentScript( 46 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheHauntedManor :
|
class TheHauntedManor :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheHauntedManor() :
|
TheHauntedManor() :
|
||||||
InstanceContentScript( 25001 )
|
Sapphire::ScriptAPI::InstanceContentScript( 25001 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class TheValentionesCeremony :
|
class TheValentionesCeremony :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TheValentionesCeremony() :
|
TheValentionesCeremony() :
|
||||||
InstanceContentScript( 25002 )
|
Sapphire::ScriptAPI::InstanceContentScript( 25002 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
class AllsWellthatEndsintheWell :
|
class AllsWellthatEndsintheWell :
|
||||||
public InstanceContentScript
|
public Sapphire::ScriptAPI::InstanceContentScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
AllsWellthatEndsintheWell() :
|
AllsWellthatEndsintheWell() :
|
||||||
InstanceContentScript( 10007 )
|
Sapphire::ScriptAPI::InstanceContentScript( 10007 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue