Combat Calculation Functions: Revision history

From Ymirheim Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

23 July 2025

15 July 2025

  • curprev 17:1417:14, 15 July 2025Neris talk contribsm 17,706 bytes +17 No edit summary
  • curprev 10:2910:29, 15 July 2025Neris talk contribsm 17,689 bytes +3 No edit summary
  • curprev 09:5909:59, 15 July 2025Neris talk contribs 17,686 bytes +17,686 Created page with "<syntaxhighlight lang="csharp" line> using System; using System.Runtime.CompilerServices; namespace Ymirheim.Server.Game.Entities.Combat; //// To port to javascript, replace: //// "[MethodImpl(MethodImplOptions.AggressiveInlining)]" -> "" //// "public static double" -> "function" //// "double " -> "" //// "Math.Pow" -> "Math.pow" //// "Math.Min" -> "Math.min" //// "Math.Max" -> "Math.max" public static class CombatCalculations { [MethodImpl(MethodImplOptions.Aggres..."