-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added speed properties to AlucardApi, added method to change Library …
…card destination
- Loading branch information
1 parent
935d2de
commit 7fac956
Showing
19 changed files
with
219 additions
and
26 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
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
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 |
---|---|---|
@@ -1,7 +1,13 @@ | ||
namespace SotnApi.Constants.Addresses.Alucard | ||
{ | ||
internal static class Entity | ||
public static class Entity | ||
{ | ||
public const long Address = 0x0733D8; | ||
public const long AttackHitboxWidth_1 = 0x073FDE; | ||
public const long AttackHitboxHeight_1 = 0x073FDF; | ||
public const long AttackHitboxWidth_2 = 0x07409A; | ||
public const long AttackHitboxHeight_2 = 0x07409B; | ||
public const long HorizontalVelocityWhole = 0x0733E2; | ||
public const long HorizontalVelocityFract = 0x0733E1; | ||
} | ||
} |
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
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
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
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
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
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
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
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
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,49 @@ | ||
namespace SotnApi.Constants.Values.Game.Enums | ||
{ | ||
public enum Zone | ||
{ | ||
MarbleGallery = 0, | ||
OuterWall = 1, | ||
LongLibrary = 2, | ||
Catacombs = 3, | ||
OlroxsQuarters = 4, | ||
AbandonedMine = 5, | ||
RoyalChapel = 6, | ||
CastleEntrance = 7, | ||
CenterCube = 8, | ||
UndergroundCaverns = 9, | ||
Colosseum = 0xA, | ||
CastleKeep = 0xB, | ||
AlchemyLaboratory = 0xC, | ||
ClockTower = 0xD, | ||
Warp = 0xE, | ||
Nightmare = 0x12, | ||
SlograGaibon = 0x13, | ||
Karasuman = 0x14, | ||
LesserDemon = 0x15, | ||
Cerberus = 0x16, | ||
ClockRoomCutscene = 0x17, | ||
RichterFight = 0x18, | ||
Hippogryph = 0x19, | ||
Doppleganger10 = 0x1A, | ||
Scylla = 0x1B, | ||
MinotaurWerewolf = 0x1C, | ||
Granfaloon = 0x1D, | ||
Olrox = 0x1E, | ||
BlackMarbleGallery = 0x20, | ||
ReverseOuterWall = 0x21, | ||
ForbiddenLibrary = 0x22, | ||
FloatingCatacombs = 0x23, | ||
DeathWingsLair = 0x24, | ||
Cave = 0x25, //Inverted Mines | ||
AntiChapel = 0x26, | ||
ReverseEntrance = 0x27, | ||
ReverseCaverns = 0x29, | ||
ReverseColosseum = 0x2A, | ||
ReverseCastleKeep = 0x2B, | ||
NecromancyLaboratory = 0x2C, | ||
ReverseClockTower = 0x2D, | ||
ReverseWarp = 0x2E, | ||
//ThirdOuterWall = 0x2F, | ||
} | ||
} |
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
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
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
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
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,10 @@ | ||
namespace SotnApi.Models | ||
{ | ||
public class TeleportZone | ||
{ | ||
public ushort Zone { get; set; } | ||
public int Xpos { get; set; } | ||
public int Ypos { get; set; } | ||
public uint Room { get; set; } | ||
} | ||
} |
Oops, something went wrong.