This is the current in-development mods I am building
BIN
development/.DS_Store
vendored
Normal file
BIN
development/alternate-advancement/.DS_Store
vendored
Normal file
BIN
development/alternate-advancement/icons/break-free.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
development/alternate-advancement/icons/combat-agility.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
development/alternate-advancement/icons/combat-fury.png
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
development/alternate-advancement/icons/combat-stalwart.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
development/alternate-advancement/icons/destructive_fury.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
development/alternate-advancement/icons/fear-resist.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
development/alternate-advancement/icons/first-aid-mastery.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
development/alternate-advancement/icons/healing-adept.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
development/alternate-advancement/icons/healing-gift.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
development/alternate-advancement/icons/innate-agility.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
development/alternate-advancement/icons/innate-intelligence.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
development/alternate-advancement/icons/innate-spirit.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
development/alternate-advancement/icons/innate-stamina.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
development/alternate-advancement/icons/innate-strength.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
development/alternate-advancement/icons/mental-clarity.png
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
development/alternate-advancement/icons/natural-durability.png
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
development/alternate-advancement/icons/slay-demons.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
development/alternate-advancement/icons/slay-leaders.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
development/alternate-advancement/icons/slay-undead.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 13 KiB |
BIN
development/alternate-advancement/icons/stun-resist.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
27
development/dungeon-elites.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
const onUtPlayerEnter: map_event_on_player_enter = (event: number, map: EMap, player: Player) => {
|
||||
// Implementation
|
||||
print(`Player ${player.GetName()} entered map ${map.GetName()}`);
|
||||
print(map.GetInstanceId());
|
||||
|
||||
if(map.GetMapId() == MapIdType.Utgarde_Keep) {
|
||||
print("Utgarde Keep");
|
||||
// AddAuraToCreatures(player);
|
||||
|
||||
const creatures = player.GetCreaturesInRange(1000);
|
||||
for(let i=0; i<creatures.length; i++) {
|
||||
const creature = creatures[i];
|
||||
creature.AddAura(45078, creature);
|
||||
creature.AddAura(48162, creature);
|
||||
// creature.SetMaxHealth(creature.GetMaxHealth() * 3);
|
||||
creature.SetScale(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
// Register Map Event on Player Enter
|
||||
RegisterServerEvent(ServerEvents.MAP_EVENT_ON_PLAYER_ENTER, (...args) => onUtPlayerEnter(...args));
|
||||
0
development/transmog/transmog.client.ts
Normal file
10
development/transmog/transmog.server.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
let aio: AIO = {};
|
||||
|
||||
import { AccountInfo } from "../../classes/account";
|
||||
|
||||
function GetTransmogItems(player: Player) {
|
||||
|
||||
// SELECT * from acore_characters.custom_unlocked_appearances cua
|
||||
// join acore_world.item_template it ON (cua.item_template_id = it.entry) where account_id = 252
|
||||
|
||||
}
|
||||