@plugify-plugins/s2sdk-types 1.4.0 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +552 -525
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1575,7 +1575,7 @@ declare module ":s2sdk" {
|
|
|
1575
1575
|
/**
|
|
1576
1576
|
* @description Handles the execution of a command triggered by a caller. This function processes the command, interprets its context, and handles any provided arguments.
|
|
1577
1577
|
*
|
|
1578
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1578
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CommandCallback|Docs}
|
|
1579
1579
|
*
|
|
1580
1580
|
* @param caller An identifier for the entity or object invoking the command. Typically used to track the source of the command.
|
|
1581
1581
|
* @param context The context in which the command is being executed. This value can be used to provide additional information about the environment or state related to the command.
|
|
@@ -1587,7 +1587,7 @@ declare module ":s2sdk" {
|
|
|
1587
1587
|
/**
|
|
1588
1588
|
* @description Handles changes to a console variable's value. This function is called whenever the value of a specific console variable is modified.
|
|
1589
1589
|
*
|
|
1590
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1590
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-ChangeCallback|Docs}
|
|
1591
1591
|
*
|
|
1592
1592
|
* @param conVarHandle A handle to the console variable that is being changed. This provides access to the variable's metadata and current state.
|
|
1593
1593
|
* @param newValue The new value being assigned to the console variable. This string contains the updated value after the change.
|
|
@@ -1599,7 +1599,7 @@ declare module ":s2sdk" {
|
|
|
1599
1599
|
/**
|
|
1600
1600
|
* @description Defines a QueueTask Callback.
|
|
1601
1601
|
*
|
|
1602
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1602
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-TaskCallback|Docs}
|
|
1603
1603
|
*
|
|
1604
1604
|
* @param userData An array intended to hold user-related data, allowing for elements of any type.
|
|
1605
1605
|
*/
|
|
@@ -1609,7 +1609,7 @@ declare module ":s2sdk" {
|
|
|
1609
1609
|
/**
|
|
1610
1610
|
* @description This function is a callback handler for entity output events. It is triggered when a specific output event is activated, and it handles the process by passing the activator, the caller, and a delay parameter for the output.
|
|
1611
1611
|
*
|
|
1612
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1612
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-HookEntityOutputCallback|Docs}
|
|
1613
1613
|
*
|
|
1614
1614
|
* @param activatorHandle The activator is an identifier for the entity or object that triggers the event. It is typically a reference to the entity that caused the output to occur.
|
|
1615
1615
|
* @param callerHandle The caller represents the entity or object that calls the output function. It can be used to identify which entity initiated the action that caused the event.
|
|
@@ -1621,7 +1621,7 @@ declare module ":s2sdk" {
|
|
|
1621
1621
|
/**
|
|
1622
1622
|
* @description Handles events triggered by the game event system. This function processes the event data, determines the necessary action, and optionally prevents event broadcasting.
|
|
1623
1623
|
*
|
|
1624
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1624
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-EventCallback|Docs}
|
|
1625
1625
|
*
|
|
1626
1626
|
* @param name The name of the event being handled. This string is used to identify the type or category of the event.
|
|
1627
1627
|
* @param event A 64-bit pointer to the event data structure. This pointer contains detailed information about the event being processed.
|
|
@@ -1633,7 +1633,7 @@ declare module ":s2sdk" {
|
|
|
1633
1633
|
/**
|
|
1634
1634
|
* @description Handles the final result of a Yes/No vote. This function is called when a vote concludes, and is responsible for determining whether the vote passed based on the number of 'yes' and 'no' votes. Also receives context about the clients who participated in the vote.
|
|
1635
1635
|
*
|
|
1636
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1636
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-YesNoVoteResult|Docs}
|
|
1637
1637
|
*
|
|
1638
1638
|
* @param numVotes Total number of votes submitted (yes + no).
|
|
1639
1639
|
* @param yesVotes Number of 'yes' votes cast.
|
|
@@ -1648,7 +1648,7 @@ declare module ":s2sdk" {
|
|
|
1648
1648
|
/**
|
|
1649
1649
|
* @description
|
|
1650
1650
|
*
|
|
1651
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1651
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-YesNoVoteHandler|Docs}
|
|
1652
1652
|
*
|
|
1653
1653
|
* @param action The action type from VoteAction enum.
|
|
1654
1654
|
* @param clientSlot For Vote actions, this is the slot of the client who voted. For Start/End, typically -1.
|
|
@@ -1660,7 +1660,7 @@ declare module ":s2sdk" {
|
|
|
1660
1660
|
/**
|
|
1661
1661
|
* @description This function is invoked when a timer event occurs. It handles the timer-related logic and performs necessary actions based on the event.
|
|
1662
1662
|
*
|
|
1663
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1663
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-TimerCallback|Docs}
|
|
1664
1664
|
*
|
|
1665
1665
|
* @param timer An id to the timer object. This object contains the details of the timer, such as its current state, duration, and any associated data.
|
|
1666
1666
|
* @param userData An array intended to hold user-related data, allowing for elements of any type.
|
|
@@ -1671,7 +1671,7 @@ declare module ":s2sdk" {
|
|
|
1671
1671
|
/**
|
|
1672
1672
|
* @description Called on client connection. If you return true, the client will be allowed in the server. If you return false (or return nothing), the client will be rejected. If the client is rejected by this forward or any other, OnClientDisconnect will not be called.<br>Note: Do not write to rejectmsg if you plan on returning true. If multiple plugins write to the string buffer, it is not defined which plugin's string will be shown to the client, but it is guaranteed one of them will.
|
|
1673
1673
|
*
|
|
1674
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1674
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientConnectCallback|Docs}
|
|
1675
1675
|
*
|
|
1676
1676
|
* @param playerSlot The player slot
|
|
1677
1677
|
* @param name The client name
|
|
@@ -1683,7 +1683,7 @@ declare module ":s2sdk" {
|
|
|
1683
1683
|
/**
|
|
1684
1684
|
* @description Called on client connection.
|
|
1685
1685
|
*
|
|
1686
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1686
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientConnect_PostCallback|Docs}
|
|
1687
1687
|
*
|
|
1688
1688
|
* @param playerSlot The player slot
|
|
1689
1689
|
*/
|
|
@@ -1693,7 +1693,7 @@ declare module ":s2sdk" {
|
|
|
1693
1693
|
/**
|
|
1694
1694
|
* @description Called once a client successfully connects. This callback is paired with OnClientDisconnect.
|
|
1695
1695
|
*
|
|
1696
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1696
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientConnectedCallback|Docs}
|
|
1697
1697
|
*
|
|
1698
1698
|
* @param playerSlot The player slot
|
|
1699
1699
|
*/
|
|
@@ -1703,7 +1703,7 @@ declare module ":s2sdk" {
|
|
|
1703
1703
|
/**
|
|
1704
1704
|
* @description Called when a client is entering the game.
|
|
1705
1705
|
*
|
|
1706
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1706
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientPutInServerCallback|Docs}
|
|
1707
1707
|
*
|
|
1708
1708
|
* @param playerSlot The player slot
|
|
1709
1709
|
*/
|
|
@@ -1713,7 +1713,7 @@ declare module ":s2sdk" {
|
|
|
1713
1713
|
/**
|
|
1714
1714
|
* @description Called when a client is disconnecting from the server.
|
|
1715
1715
|
*
|
|
1716
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1716
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientDisconnectCallback|Docs}
|
|
1717
1717
|
*
|
|
1718
1718
|
* @param playerSlot The player slot
|
|
1719
1719
|
*/
|
|
@@ -1723,7 +1723,7 @@ declare module ":s2sdk" {
|
|
|
1723
1723
|
/**
|
|
1724
1724
|
* @description Called when a client is disconnected from the server.
|
|
1725
1725
|
*
|
|
1726
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1726
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientDisconnect_PostCallback|Docs}
|
|
1727
1727
|
*
|
|
1728
1728
|
* @param playerSlot The player slot
|
|
1729
1729
|
* @param reason The reason for disconnect
|
|
@@ -1734,7 +1734,7 @@ declare module ":s2sdk" {
|
|
|
1734
1734
|
/**
|
|
1735
1735
|
* @description Called when a client is activated by the game.
|
|
1736
1736
|
*
|
|
1737
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1737
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientActiveCallback|Docs}
|
|
1738
1738
|
*
|
|
1739
1739
|
* @param playerSlot The player slot
|
|
1740
1740
|
* @param isActive Active state
|
|
@@ -1745,7 +1745,7 @@ declare module ":s2sdk" {
|
|
|
1745
1745
|
/**
|
|
1746
1746
|
* @description Called when a client is fully connected to the game.
|
|
1747
1747
|
*
|
|
1748
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1748
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientFullyConnectCallback|Docs}
|
|
1749
1749
|
*
|
|
1750
1750
|
* @param playerSlot The player slot
|
|
1751
1751
|
*/
|
|
@@ -1755,7 +1755,7 @@ declare module ":s2sdk" {
|
|
|
1755
1755
|
/**
|
|
1756
1756
|
* @description Called whenever the client's settings are changed.
|
|
1757
1757
|
*
|
|
1758
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1758
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientSettingsChangedCallback|Docs}
|
|
1759
1759
|
*
|
|
1760
1760
|
* @param playerSlot The player slot
|
|
1761
1761
|
*/
|
|
@@ -1765,7 +1765,7 @@ declare module ":s2sdk" {
|
|
|
1765
1765
|
/**
|
|
1766
1766
|
* @description Called when a client is fully connected to the game.
|
|
1767
1767
|
*
|
|
1768
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1768
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientAuthenticatedCallback|Docs}
|
|
1769
1769
|
*
|
|
1770
1770
|
* @param playerSlot The player slot
|
|
1771
1771
|
* @param steam Steam account ID or 0 if not available.
|
|
@@ -1776,7 +1776,7 @@ declare module ":s2sdk" {
|
|
|
1776
1776
|
/**
|
|
1777
1777
|
* @description Called when the map starts loading.
|
|
1778
1778
|
*
|
|
1779
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1779
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnLevelInitCallback|Docs}
|
|
1780
1780
|
*
|
|
1781
1781
|
* @param mapName The name of the map
|
|
1782
1782
|
* @param mapEntities The entities of the map
|
|
@@ -1787,7 +1787,7 @@ declare module ":s2sdk" {
|
|
|
1787
1787
|
/**
|
|
1788
1788
|
* @description Called right before a map ends.
|
|
1789
1789
|
*
|
|
1790
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1790
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnLevelShutdownCallback|Docs}
|
|
1791
1791
|
*
|
|
1792
1792
|
*
|
|
1793
1793
|
*/
|
|
@@ -1797,7 +1797,7 @@ declare module ":s2sdk" {
|
|
|
1797
1797
|
/**
|
|
1798
1798
|
* @description Called when an entity is spawned.
|
|
1799
1799
|
*
|
|
1800
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1800
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntitySpawnedCallback|Docs}
|
|
1801
1801
|
*
|
|
1802
1802
|
* @param entityHandle The spawned entity handle
|
|
1803
1803
|
*/
|
|
@@ -1807,7 +1807,7 @@ declare module ":s2sdk" {
|
|
|
1807
1807
|
/**
|
|
1808
1808
|
* @description Called when an entity is created.
|
|
1809
1809
|
*
|
|
1810
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1810
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntityCreatedCallback|Docs}
|
|
1811
1811
|
*
|
|
1812
1812
|
* @param entityHandle The created entity handle
|
|
1813
1813
|
*/
|
|
@@ -1817,7 +1817,7 @@ declare module ":s2sdk" {
|
|
|
1817
1817
|
/**
|
|
1818
1818
|
* @description Called when when an entity is destroyed.
|
|
1819
1819
|
*
|
|
1820
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1820
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntityDeletedCallback|Docs}
|
|
1821
1821
|
*
|
|
1822
1822
|
* @param entityHandle The deleted entity handle
|
|
1823
1823
|
*/
|
|
@@ -1827,7 +1827,7 @@ declare module ":s2sdk" {
|
|
|
1827
1827
|
/**
|
|
1828
1828
|
* @description When an entity is reparented to another entity.
|
|
1829
1829
|
*
|
|
1830
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1830
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntityParentChangedCallback|Docs}
|
|
1831
1831
|
*
|
|
1832
1832
|
* @param entityHandle The entity whose parent changed
|
|
1833
1833
|
* @param parentHandle The new parent entity handle
|
|
@@ -1838,7 +1838,7 @@ declare module ":s2sdk" {
|
|
|
1838
1838
|
/**
|
|
1839
1839
|
* @description Called on every server startup.
|
|
1840
1840
|
*
|
|
1841
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1841
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnServerStartupCallback|Docs}
|
|
1842
1842
|
*
|
|
1843
1843
|
*
|
|
1844
1844
|
*/
|
|
@@ -1848,7 +1848,7 @@ declare module ":s2sdk" {
|
|
|
1848
1848
|
/**
|
|
1849
1849
|
* @description Called on every server activate.
|
|
1850
1850
|
*
|
|
1851
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1851
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnServerActivateCallback|Docs}
|
|
1852
1852
|
*
|
|
1853
1853
|
*
|
|
1854
1854
|
*/
|
|
@@ -1858,7 +1858,7 @@ declare module ":s2sdk" {
|
|
|
1858
1858
|
/**
|
|
1859
1859
|
* @description Called on every level change.
|
|
1860
1860
|
*
|
|
1861
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1861
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnChangeLevelCallback|Docs}
|
|
1862
1862
|
*
|
|
1863
1863
|
*
|
|
1864
1864
|
*/
|
|
@@ -1868,7 +1868,7 @@ declare module ":s2sdk" {
|
|
|
1868
1868
|
/**
|
|
1869
1869
|
* @description Called before every server frame. Note that you should avoid doing expensive computations or declaring large local arrays.
|
|
1870
1870
|
*
|
|
1871
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1871
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnGameFrameCallback|Docs}
|
|
1872
1872
|
*
|
|
1873
1873
|
* @param simulating
|
|
1874
1874
|
* @param firstTick
|
|
@@ -1880,7 +1880,7 @@ declare module ":s2sdk" {
|
|
|
1880
1880
|
/**
|
|
1881
1881
|
* @description Called when the server is not in game.
|
|
1882
1882
|
*
|
|
1883
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1883
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnUpdateWhenNotInGameCallback|Docs}
|
|
1884
1884
|
*
|
|
1885
1885
|
* @param deltaTime Time elapsed since last update
|
|
1886
1886
|
*/
|
|
@@ -1890,7 +1890,7 @@ declare module ":s2sdk" {
|
|
|
1890
1890
|
/**
|
|
1891
1891
|
* @description Called before every server frame, before entities are updated.
|
|
1892
1892
|
*
|
|
1893
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1893
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnPreWorldUpdateCallback|Docs}
|
|
1894
1894
|
*
|
|
1895
1895
|
* @param simulating
|
|
1896
1896
|
*/
|
|
@@ -1900,7 +1900,7 @@ declare module ":s2sdk" {
|
|
|
1900
1900
|
/**
|
|
1901
1901
|
* @description Callback function for user messages.
|
|
1902
1902
|
*
|
|
1903
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1903
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageCallback|Docs}
|
|
1904
1904
|
*
|
|
1905
1905
|
* @param userMessage The user message.
|
|
1906
1906
|
*/
|
|
@@ -1911,16 +1911,25 @@ declare module ":s2sdk" {
|
|
|
1911
1911
|
/**
|
|
1912
1912
|
* @description Retrieves The player slot from a given entity pointer.
|
|
1913
1913
|
*
|
|
1914
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1914
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetPlayerSlotFromEntityPointer|Docs}
|
|
1915
1915
|
*
|
|
1916
1916
|
* @param entity A pointer to the entity (CBaseEntity*).
|
|
1917
1917
|
*/
|
|
1918
1918
|
export function GetPlayerSlotFromEntityPointer(entity: number): number;
|
|
1919
1919
|
|
|
1920
|
+
/**
|
|
1921
|
+
* @description Returns a pointer to the entity instance by player slot index.
|
|
1922
|
+
*
|
|
1923
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityPointerFromPlayerSlot|Docs}
|
|
1924
|
+
*
|
|
1925
|
+
* @param playerSlot Index of the player slot.
|
|
1926
|
+
*/
|
|
1927
|
+
export function GetEntityPointerFromPlayerSlot(playerSlot: number): number;
|
|
1928
|
+
|
|
1920
1929
|
/**
|
|
1921
1930
|
* @description Retrieves the client object from a given player slot.
|
|
1922
1931
|
*
|
|
1923
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1932
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientBaseFromPlayerSlot|Docs}
|
|
1924
1933
|
*
|
|
1925
1934
|
* @param playerSlot The index of the client.
|
|
1926
1935
|
*/
|
|
@@ -1929,16 +1938,34 @@ declare module ":s2sdk" {
|
|
|
1929
1938
|
/**
|
|
1930
1939
|
* @description Retrieves the index of a given client object.
|
|
1931
1940
|
*
|
|
1932
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1941
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetPlayerSlotFromClientBase|Docs}
|
|
1933
1942
|
*
|
|
1934
1943
|
* @param client A pointer to the client object (CServerSideClient*).
|
|
1935
1944
|
*/
|
|
1936
1945
|
export function GetPlayerSlotFromClientBase(client: number): number;
|
|
1937
1946
|
|
|
1947
|
+
/**
|
|
1948
|
+
* @description Returns the entity index for a given player slot.
|
|
1949
|
+
*
|
|
1950
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientIndexFromPlayerSlot|Docs}
|
|
1951
|
+
*
|
|
1952
|
+
* @param playerSlot The index of the player's slot.
|
|
1953
|
+
*/
|
|
1954
|
+
export function GetClientIndexFromPlayerSlot(playerSlot: number): number;
|
|
1955
|
+
|
|
1956
|
+
/**
|
|
1957
|
+
* @description Retrieves the player slot from a given client index.
|
|
1958
|
+
*
|
|
1959
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetPlayerSlotFromClientIndex|Docs}
|
|
1960
|
+
*
|
|
1961
|
+
* @param clientIndex The index of the client.
|
|
1962
|
+
*/
|
|
1963
|
+
export function GetPlayerSlotFromClientIndex(clientIndex: number): number;
|
|
1964
|
+
|
|
1938
1965
|
/**
|
|
1939
1966
|
* @description Retrieves a client's authentication string (SteamID).
|
|
1940
1967
|
*
|
|
1941
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1968
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientAuthId|Docs}
|
|
1942
1969
|
*
|
|
1943
1970
|
* @param playerSlot The index of the player's slot whose authentication string is being retrieved.
|
|
1944
1971
|
*/
|
|
@@ -1947,7 +1974,7 @@ declare module ":s2sdk" {
|
|
|
1947
1974
|
/**
|
|
1948
1975
|
* @description Returns the client's Steam account ID, a unique number identifying a given Steam account.
|
|
1949
1976
|
*
|
|
1950
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1977
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientAccountId|Docs}
|
|
1951
1978
|
*
|
|
1952
1979
|
* @param playerSlot The index of the player's slot.
|
|
1953
1980
|
*/
|
|
@@ -1956,7 +1983,7 @@ declare module ":s2sdk" {
|
|
|
1956
1983
|
/**
|
|
1957
1984
|
* @description Retrieves a client's IP address.
|
|
1958
1985
|
*
|
|
1959
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1986
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientIp|Docs}
|
|
1960
1987
|
*
|
|
1961
1988
|
* @param playerSlot The index of the player's slot.
|
|
1962
1989
|
*/
|
|
@@ -1965,7 +1992,7 @@ declare module ":s2sdk" {
|
|
|
1965
1992
|
/**
|
|
1966
1993
|
* @description Returns the client's name.
|
|
1967
1994
|
*
|
|
1968
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
1995
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientName|Docs}
|
|
1969
1996
|
*
|
|
1970
1997
|
* @param playerSlot The index of the player's slot.
|
|
1971
1998
|
*/
|
|
@@ -1974,7 +2001,7 @@ declare module ":s2sdk" {
|
|
|
1974
2001
|
/**
|
|
1975
2002
|
* @description Returns the client's connection time in seconds.
|
|
1976
2003
|
*
|
|
1977
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2004
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientTime|Docs}
|
|
1978
2005
|
*
|
|
1979
2006
|
* @param playerSlot The index of the player's slot.
|
|
1980
2007
|
*/
|
|
@@ -1983,7 +2010,7 @@ declare module ":s2sdk" {
|
|
|
1983
2010
|
/**
|
|
1984
2011
|
* @description Returns the client's current latency (RTT).
|
|
1985
2012
|
*
|
|
1986
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2013
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientLatency|Docs}
|
|
1987
2014
|
*
|
|
1988
2015
|
* @param playerSlot The index of the player's slot.
|
|
1989
2016
|
*/
|
|
@@ -1992,7 +2019,7 @@ declare module ":s2sdk" {
|
|
|
1992
2019
|
/**
|
|
1993
2020
|
* @description Returns the client's access flags.
|
|
1994
2021
|
*
|
|
1995
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2022
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetUserFlagBits|Docs}
|
|
1996
2023
|
*
|
|
1997
2024
|
* @param playerSlot The index of the player's slot.
|
|
1998
2025
|
*/
|
|
@@ -2001,7 +2028,7 @@ declare module ":s2sdk" {
|
|
|
2001
2028
|
/**
|
|
2002
2029
|
* @description Sets the access flags on a client using a bitmask.
|
|
2003
2030
|
*
|
|
2004
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2031
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetUserFlagBits|Docs}
|
|
2005
2032
|
*
|
|
2006
2033
|
* @param playerSlot The index of the player's slot.
|
|
2007
2034
|
* @param flags Bitmask representing the flags to be set.
|
|
@@ -2011,7 +2038,7 @@ declare module ":s2sdk" {
|
|
|
2011
2038
|
/**
|
|
2012
2039
|
* @description Adds access flags to a client.
|
|
2013
2040
|
*
|
|
2014
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2041
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-AddUserFlags|Docs}
|
|
2015
2042
|
*
|
|
2016
2043
|
* @param playerSlot The index of the player's slot.
|
|
2017
2044
|
* @param flags Bitmask representing the flags to be added.
|
|
@@ -2021,7 +2048,7 @@ declare module ":s2sdk" {
|
|
|
2021
2048
|
/**
|
|
2022
2049
|
* @description Removes access flags from a client.
|
|
2023
2050
|
*
|
|
2024
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2051
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-RemoveUserFlags|Docs}
|
|
2025
2052
|
*
|
|
2026
2053
|
* @param playerSlot The index of the player's slot.
|
|
2027
2054
|
* @param flags Bitmask representing the flags to be removed.
|
|
@@ -2031,7 +2058,7 @@ declare module ":s2sdk" {
|
|
|
2031
2058
|
/**
|
|
2032
2059
|
* @description Checks if a certain player has been authenticated.
|
|
2033
2060
|
*
|
|
2034
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2061
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsClientAuthorized|Docs}
|
|
2035
2062
|
*
|
|
2036
2063
|
* @param playerSlot The index of the player's slot.
|
|
2037
2064
|
*/
|
|
@@ -2040,7 +2067,7 @@ declare module ":s2sdk" {
|
|
|
2040
2067
|
/**
|
|
2041
2068
|
* @description Checks if a certain player is connected.
|
|
2042
2069
|
*
|
|
2043
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2070
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsClientConnected|Docs}
|
|
2044
2071
|
*
|
|
2045
2072
|
* @param playerSlot The index of the player's slot.
|
|
2046
2073
|
*/
|
|
@@ -2049,7 +2076,7 @@ declare module ":s2sdk" {
|
|
|
2049
2076
|
/**
|
|
2050
2077
|
* @description Checks if a certain player has entered the game.
|
|
2051
2078
|
*
|
|
2052
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2079
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsClientInGame|Docs}
|
|
2053
2080
|
*
|
|
2054
2081
|
* @param playerSlot The index of the player's slot.
|
|
2055
2082
|
*/
|
|
@@ -2058,7 +2085,7 @@ declare module ":s2sdk" {
|
|
|
2058
2085
|
/**
|
|
2059
2086
|
* @description Checks if a certain player is the SourceTV bot.
|
|
2060
2087
|
*
|
|
2061
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2088
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsClientSourceTV|Docs}
|
|
2062
2089
|
*
|
|
2063
2090
|
* @param playerSlot The index of the player's slot.
|
|
2064
2091
|
*/
|
|
@@ -2067,7 +2094,7 @@ declare module ":s2sdk" {
|
|
|
2067
2094
|
/**
|
|
2068
2095
|
* @description Checks if the client is alive or dead.
|
|
2069
2096
|
*
|
|
2070
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2097
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsClientAlive|Docs}
|
|
2071
2098
|
*
|
|
2072
2099
|
* @param playerSlot The index of the player's slot.
|
|
2073
2100
|
*/
|
|
@@ -2076,7 +2103,7 @@ declare module ":s2sdk" {
|
|
|
2076
2103
|
/**
|
|
2077
2104
|
* @description Checks if a certain player is a fake client.
|
|
2078
2105
|
*
|
|
2079
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2106
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsFakeClient|Docs}
|
|
2080
2107
|
*
|
|
2081
2108
|
* @param playerSlot The index of the player's slot.
|
|
2082
2109
|
*/
|
|
@@ -2085,7 +2112,7 @@ declare module ":s2sdk" {
|
|
|
2085
2112
|
/**
|
|
2086
2113
|
* @description Retrieves a client's team index.
|
|
2087
2114
|
*
|
|
2088
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2115
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientTeam|Docs}
|
|
2089
2116
|
*
|
|
2090
2117
|
* @param playerSlot The index of the player's slot.
|
|
2091
2118
|
*/
|
|
@@ -2094,7 +2121,7 @@ declare module ":s2sdk" {
|
|
|
2094
2121
|
/**
|
|
2095
2122
|
* @description Returns the client's health.
|
|
2096
2123
|
*
|
|
2097
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2124
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientHealth|Docs}
|
|
2098
2125
|
*
|
|
2099
2126
|
* @param playerSlot The index of the player's slot.
|
|
2100
2127
|
*/
|
|
@@ -2103,7 +2130,7 @@ declare module ":s2sdk" {
|
|
|
2103
2130
|
/**
|
|
2104
2131
|
* @description Returns the client's armor value.
|
|
2105
2132
|
*
|
|
2106
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2133
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientArmor|Docs}
|
|
2107
2134
|
*
|
|
2108
2135
|
* @param playerSlot The index of the player's slot.
|
|
2109
2136
|
*/
|
|
@@ -2112,7 +2139,7 @@ declare module ":s2sdk" {
|
|
|
2112
2139
|
/**
|
|
2113
2140
|
* @description Retrieves the client's origin vector.
|
|
2114
2141
|
*
|
|
2115
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2142
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientAbsOrigin|Docs}
|
|
2116
2143
|
*
|
|
2117
2144
|
* @param playerSlot The index of the player's slot.
|
|
2118
2145
|
*/
|
|
@@ -2121,7 +2148,7 @@ declare module ":s2sdk" {
|
|
|
2121
2148
|
/**
|
|
2122
2149
|
* @description Retrieves the client's position angle.
|
|
2123
2150
|
*
|
|
2124
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2151
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientAbsAngles|Docs}
|
|
2125
2152
|
*
|
|
2126
2153
|
* @param playerSlot The index of the player's slot.
|
|
2127
2154
|
*/
|
|
@@ -2130,7 +2157,7 @@ declare module ":s2sdk" {
|
|
|
2130
2157
|
/**
|
|
2131
2158
|
* @description Retrieves the client's eye angle.
|
|
2132
2159
|
*
|
|
2133
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2160
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientEyeAngles|Docs}
|
|
2134
2161
|
*
|
|
2135
2162
|
* @param playerSlot The index of the player's slot.
|
|
2136
2163
|
*/
|
|
@@ -2139,7 +2166,7 @@ declare module ":s2sdk" {
|
|
|
2139
2166
|
/**
|
|
2140
2167
|
* @description Processes the target string to determine if one user can target another.
|
|
2141
2168
|
*
|
|
2142
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2169
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-ProcessTargetString|Docs}
|
|
2143
2170
|
*
|
|
2144
2171
|
* @param caller The index of the player's slot making the target request.
|
|
2145
2172
|
* @param target The target string specifying the player or players to be targeted.
|
|
@@ -2149,7 +2176,7 @@ declare module ":s2sdk" {
|
|
|
2149
2176
|
/**
|
|
2150
2177
|
* @description Changes a client's team.
|
|
2151
2178
|
*
|
|
2152
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2179
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-ChangeClientTeam|Docs}
|
|
2153
2180
|
*
|
|
2154
2181
|
* @param playerSlot The index of the player's slot.
|
|
2155
2182
|
* @param team The team index to assign the client to.
|
|
@@ -2159,7 +2186,7 @@ declare module ":s2sdk" {
|
|
|
2159
2186
|
/**
|
|
2160
2187
|
* @description Switches the player's team.
|
|
2161
2188
|
*
|
|
2162
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2189
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SwitchClientTeam|Docs}
|
|
2163
2190
|
*
|
|
2164
2191
|
* @param playerSlot The index of the player's slot.
|
|
2165
2192
|
* @param team The team index to switch the client to.
|
|
@@ -2169,7 +2196,7 @@ declare module ":s2sdk" {
|
|
|
2169
2196
|
/**
|
|
2170
2197
|
* @description Respawns a player.
|
|
2171
2198
|
*
|
|
2172
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2199
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-RespawnClient|Docs}
|
|
2173
2200
|
*
|
|
2174
2201
|
* @param playerSlot The index of the player's slot to respawn.
|
|
2175
2202
|
*/
|
|
@@ -2178,7 +2205,7 @@ declare module ":s2sdk" {
|
|
|
2178
2205
|
/**
|
|
2179
2206
|
* @description Forces a player to commit suicide.
|
|
2180
2207
|
*
|
|
2181
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2208
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-ForcePlayerSuicide|Docs}
|
|
2182
2209
|
*
|
|
2183
2210
|
* @param playerSlot The index of the player's slot.
|
|
2184
2211
|
* @param explode If true, the client will explode upon death.
|
|
@@ -2189,7 +2216,7 @@ declare module ":s2sdk" {
|
|
|
2189
2216
|
/**
|
|
2190
2217
|
* @description Disconnects a client from the server as soon as the next frame starts.
|
|
2191
2218
|
*
|
|
2192
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2219
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-KickClient|Docs}
|
|
2193
2220
|
*
|
|
2194
2221
|
* @param playerSlot The index of the player's slot to be kicked.
|
|
2195
2222
|
*/
|
|
@@ -2198,7 +2225,7 @@ declare module ":s2sdk" {
|
|
|
2198
2225
|
/**
|
|
2199
2226
|
* @description Bans a client for a specified duration.
|
|
2200
2227
|
*
|
|
2201
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2228
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-BanClient|Docs}
|
|
2202
2229
|
*
|
|
2203
2230
|
* @param playerSlot The index of the player's slot to be banned.
|
|
2204
2231
|
* @param duration Duration of the ban in seconds.
|
|
@@ -2209,7 +2236,7 @@ declare module ":s2sdk" {
|
|
|
2209
2236
|
/**
|
|
2210
2237
|
* @description Bans an identity (either an IP address or a Steam authentication string).
|
|
2211
2238
|
*
|
|
2212
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2239
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-BanIdentity|Docs}
|
|
2213
2240
|
*
|
|
2214
2241
|
* @param steamId The Steam ID to ban.
|
|
2215
2242
|
* @param duration Duration of the ban in seconds.
|
|
@@ -2220,7 +2247,7 @@ declare module ":s2sdk" {
|
|
|
2220
2247
|
/**
|
|
2221
2248
|
* @description Retrieves the handle of the client's currently active weapon.
|
|
2222
2249
|
*
|
|
2223
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2250
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientActiveWeapon|Docs}
|
|
2224
2251
|
*
|
|
2225
2252
|
* @param playerSlot The index of the client.
|
|
2226
2253
|
*/
|
|
@@ -2229,7 +2256,7 @@ declare module ":s2sdk" {
|
|
|
2229
2256
|
/**
|
|
2230
2257
|
* @description Retrieves a list of weapon handles owned by the client.
|
|
2231
2258
|
*
|
|
2232
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2259
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientWeapons|Docs}
|
|
2233
2260
|
*
|
|
2234
2261
|
* @param playerSlot The index of the client.
|
|
2235
2262
|
*/
|
|
@@ -2238,7 +2265,7 @@ declare module ":s2sdk" {
|
|
|
2238
2265
|
/**
|
|
2239
2266
|
* @description Forces a player to drop their weapon.
|
|
2240
2267
|
*
|
|
2241
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2268
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-DropWeapon|Docs}
|
|
2242
2269
|
*
|
|
2243
2270
|
* @param playerSlot The index of the player's slot.
|
|
2244
2271
|
* @param weaponHandle The handle of weapon to drop.
|
|
@@ -2250,7 +2277,7 @@ declare module ":s2sdk" {
|
|
|
2250
2277
|
/**
|
|
2251
2278
|
* @description Removes all weapons from a client, with an option to remove the suit as well.
|
|
2252
2279
|
*
|
|
2253
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2280
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-StripWeapons|Docs}
|
|
2254
2281
|
*
|
|
2255
2282
|
* @param playerSlot The index of the client.
|
|
2256
2283
|
* @param removeSuit A boolean indicating whether to also remove the client's suit.
|
|
@@ -2260,7 +2287,7 @@ declare module ":s2sdk" {
|
|
|
2260
2287
|
/**
|
|
2261
2288
|
* @description Bumps a player's weapon.
|
|
2262
2289
|
*
|
|
2263
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2290
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-BumpWeapon|Docs}
|
|
2264
2291
|
*
|
|
2265
2292
|
* @param playerSlot The index of the client.
|
|
2266
2293
|
* @param weaponHandle The handle of weapon to bump.
|
|
@@ -2270,7 +2297,7 @@ declare module ":s2sdk" {
|
|
|
2270
2297
|
/**
|
|
2271
2298
|
* @description Switches a player's weapon.
|
|
2272
2299
|
*
|
|
2273
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2300
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SwitchWeapon|Docs}
|
|
2274
2301
|
*
|
|
2275
2302
|
* @param playerSlot The index of the client.
|
|
2276
2303
|
* @param weaponHandle The handle of weapon to switch.
|
|
@@ -2280,7 +2307,7 @@ declare module ":s2sdk" {
|
|
|
2280
2307
|
/**
|
|
2281
2308
|
* @description Removes a player's weapon.
|
|
2282
2309
|
*
|
|
2283
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2310
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-RemoveWeapon|Docs}
|
|
2284
2311
|
*
|
|
2285
2312
|
* @param playerSlot The index of the client.
|
|
2286
2313
|
* @param weaponHandle The handle of weapon to remove.
|
|
@@ -2290,7 +2317,7 @@ declare module ":s2sdk" {
|
|
|
2290
2317
|
/**
|
|
2291
2318
|
* @description Gives a named item (e.g., weapon) to a client.
|
|
2292
2319
|
*
|
|
2293
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2320
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GiveNamedItem|Docs}
|
|
2294
2321
|
*
|
|
2295
2322
|
* @param playerSlot The index of the client.
|
|
2296
2323
|
* @param itemName The name of the item to give.
|
|
@@ -2300,7 +2327,7 @@ declare module ":s2sdk" {
|
|
|
2300
2327
|
/**
|
|
2301
2328
|
* @description Retrieves the state of a specific button for a client.
|
|
2302
2329
|
*
|
|
2303
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2330
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientButtons|Docs}
|
|
2304
2331
|
*
|
|
2305
2332
|
* @param playerSlot The index of the client.
|
|
2306
2333
|
* @param buttonIndex The index of the button (0-2).
|
|
@@ -2310,7 +2337,7 @@ declare module ":s2sdk" {
|
|
|
2310
2337
|
/**
|
|
2311
2338
|
* @description Retrieves the amount of money a client has.
|
|
2312
2339
|
*
|
|
2313
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2340
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientMoney|Docs}
|
|
2314
2341
|
*
|
|
2315
2342
|
* @param playerSlot The index of the client.
|
|
2316
2343
|
*/
|
|
@@ -2319,7 +2346,7 @@ declare module ":s2sdk" {
|
|
|
2319
2346
|
/**
|
|
2320
2347
|
* @description Sets the amount of money for a client.
|
|
2321
2348
|
*
|
|
2322
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2349
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetClientMoney|Docs}
|
|
2323
2350
|
*
|
|
2324
2351
|
* @param playerSlot The index of the client.
|
|
2325
2352
|
* @param money The amount of money to set.
|
|
@@ -2329,7 +2356,7 @@ declare module ":s2sdk" {
|
|
|
2329
2356
|
/**
|
|
2330
2357
|
* @description Retrieves the number of kills for a client.
|
|
2331
2358
|
*
|
|
2332
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2359
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientKills|Docs}
|
|
2333
2360
|
*
|
|
2334
2361
|
* @param playerSlot The index of the client.
|
|
2335
2362
|
*/
|
|
@@ -2338,7 +2365,7 @@ declare module ":s2sdk" {
|
|
|
2338
2365
|
/**
|
|
2339
2366
|
* @description Sets the number of kills for a client.
|
|
2340
2367
|
*
|
|
2341
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2368
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetClientKills|Docs}
|
|
2342
2369
|
*
|
|
2343
2370
|
* @param playerSlot The index of the client.
|
|
2344
2371
|
* @param kills The number of kills to set.
|
|
@@ -2348,7 +2375,7 @@ declare module ":s2sdk" {
|
|
|
2348
2375
|
/**
|
|
2349
2376
|
* @description Retrieves the number of deaths for a client.
|
|
2350
2377
|
*
|
|
2351
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2378
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientDeaths|Docs}
|
|
2352
2379
|
*
|
|
2353
2380
|
* @param playerSlot The index of the client.
|
|
2354
2381
|
*/
|
|
@@ -2357,7 +2384,7 @@ declare module ":s2sdk" {
|
|
|
2357
2384
|
/**
|
|
2358
2385
|
* @description Sets the number of deaths for a client.
|
|
2359
2386
|
*
|
|
2360
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2387
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetClientDeaths|Docs}
|
|
2361
2388
|
*
|
|
2362
2389
|
* @param playerSlot The index of the client.
|
|
2363
2390
|
* @param deaths The number of deaths to set.
|
|
@@ -2367,7 +2394,7 @@ declare module ":s2sdk" {
|
|
|
2367
2394
|
/**
|
|
2368
2395
|
* @description Retrieves the number of assists for a client.
|
|
2369
2396
|
*
|
|
2370
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2397
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientAssists|Docs}
|
|
2371
2398
|
*
|
|
2372
2399
|
* @param playerSlot The index of the client.
|
|
2373
2400
|
*/
|
|
@@ -2376,7 +2403,7 @@ declare module ":s2sdk" {
|
|
|
2376
2403
|
/**
|
|
2377
2404
|
* @description Sets the number of assists for a client.
|
|
2378
2405
|
*
|
|
2379
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2406
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetClientAssists|Docs}
|
|
2380
2407
|
*
|
|
2381
2408
|
* @param playerSlot The index of the client.
|
|
2382
2409
|
* @param assists The number of assists to set.
|
|
@@ -2386,7 +2413,7 @@ declare module ":s2sdk" {
|
|
|
2386
2413
|
/**
|
|
2387
2414
|
* @description Retrieves the total damage dealt by a client.
|
|
2388
2415
|
*
|
|
2389
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2416
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientDamage|Docs}
|
|
2390
2417
|
*
|
|
2391
2418
|
* @param playerSlot The index of the client.
|
|
2392
2419
|
*/
|
|
@@ -2395,7 +2422,7 @@ declare module ":s2sdk" {
|
|
|
2395
2422
|
/**
|
|
2396
2423
|
* @description Sets the total damage dealt by a client.
|
|
2397
2424
|
*
|
|
2398
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2425
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetClientDamage|Docs}
|
|
2399
2426
|
*
|
|
2400
2427
|
* @param playerSlot The index of the client.
|
|
2401
2428
|
* @param damage The amount of damage to set.
|
|
@@ -2405,7 +2432,7 @@ declare module ":s2sdk" {
|
|
|
2405
2432
|
/**
|
|
2406
2433
|
* @description Creates a console command as an administrative command.
|
|
2407
2434
|
*
|
|
2408
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2435
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-AddAdminCommand|Docs}
|
|
2409
2436
|
*
|
|
2410
2437
|
* @param name The name of the console command.
|
|
2411
2438
|
* @param adminFlags The admin flags that indicate which admin level can use this command.
|
|
@@ -2419,7 +2446,7 @@ declare module ":s2sdk" {
|
|
|
2419
2446
|
/**
|
|
2420
2447
|
* @description Creates a console command or hooks an already existing one.
|
|
2421
2448
|
*
|
|
2422
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2449
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-AddConsoleCommand|Docs}
|
|
2423
2450
|
*
|
|
2424
2451
|
* @param name The name of the console command.
|
|
2425
2452
|
* @param description A brief description of what the command does.
|
|
@@ -2432,7 +2459,7 @@ declare module ":s2sdk" {
|
|
|
2432
2459
|
/**
|
|
2433
2460
|
* @description Removes a console command from the system.
|
|
2434
2461
|
*
|
|
2435
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2462
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-RemoveCommand|Docs}
|
|
2436
2463
|
*
|
|
2437
2464
|
* @param name The name of the command to be removed.
|
|
2438
2465
|
* @param callback The callback function associated with the command to be removed.
|
|
@@ -2442,7 +2469,7 @@ declare module ":s2sdk" {
|
|
|
2442
2469
|
/**
|
|
2443
2470
|
* @description Adds a callback that will fire when a command is sent to the server.
|
|
2444
2471
|
*
|
|
2445
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2472
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-AddCommandListener|Docs}
|
|
2446
2473
|
*
|
|
2447
2474
|
* @param name The name of the command.
|
|
2448
2475
|
* @param callback The callback function that will be invoked when the command is executed.
|
|
@@ -2453,7 +2480,7 @@ declare module ":s2sdk" {
|
|
|
2453
2480
|
/**
|
|
2454
2481
|
* @description Removes a callback that fires when a command is sent to the server.
|
|
2455
2482
|
*
|
|
2456
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2483
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-RemoveCommandListener|Docs}
|
|
2457
2484
|
*
|
|
2458
2485
|
* @param name The name of the command.
|
|
2459
2486
|
* @param callback The callback function to be removed.
|
|
@@ -2464,7 +2491,7 @@ declare module ":s2sdk" {
|
|
|
2464
2491
|
/**
|
|
2465
2492
|
* @description Executes a server command as if it were run on the server console or through RCON.
|
|
2466
2493
|
*
|
|
2467
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2494
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-ServerCommand|Docs}
|
|
2468
2495
|
*
|
|
2469
2496
|
* @param command The command to execute on the server.
|
|
2470
2497
|
*/
|
|
@@ -2473,7 +2500,7 @@ declare module ":s2sdk" {
|
|
|
2473
2500
|
/**
|
|
2474
2501
|
* @description Executes a server command as if it were on the server console (or RCON) and stores the printed text into buffer.
|
|
2475
2502
|
*
|
|
2476
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2503
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-ServerCommandEx|Docs}
|
|
2477
2504
|
*
|
|
2478
2505
|
* @param command The command to execute on the server.
|
|
2479
2506
|
*/
|
|
@@ -2482,7 +2509,7 @@ declare module ":s2sdk" {
|
|
|
2482
2509
|
/**
|
|
2483
2510
|
* @description Executes a client command.
|
|
2484
2511
|
*
|
|
2485
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2512
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-ClientCommand|Docs}
|
|
2486
2513
|
*
|
|
2487
2514
|
* @param playerSlot The index of the client executing the command.
|
|
2488
2515
|
* @param command The command to execute on the client.
|
|
@@ -2492,7 +2519,7 @@ declare module ":s2sdk" {
|
|
|
2492
2519
|
/**
|
|
2493
2520
|
* @description Executes a client command on the server without network communication.
|
|
2494
2521
|
*
|
|
2495
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2522
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-FakeClientCommand|Docs}
|
|
2496
2523
|
*
|
|
2497
2524
|
* @param playerSlot The index of the client.
|
|
2498
2525
|
* @param command The command to be executed by the client.
|
|
@@ -2502,7 +2529,7 @@ declare module ":s2sdk" {
|
|
|
2502
2529
|
/**
|
|
2503
2530
|
* @description Sends a message to the server console.
|
|
2504
2531
|
*
|
|
2505
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2532
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintToServer|Docs}
|
|
2506
2533
|
*
|
|
2507
2534
|
* @param msg The message to be sent to the server console.
|
|
2508
2535
|
*/
|
|
@@ -2511,7 +2538,7 @@ declare module ":s2sdk" {
|
|
|
2511
2538
|
/**
|
|
2512
2539
|
* @description Sends a message to a client's console.
|
|
2513
2540
|
*
|
|
2514
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2541
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintToConsole|Docs}
|
|
2515
2542
|
*
|
|
2516
2543
|
* @param playerSlot The index of the player's slot to whom the message will be sent.
|
|
2517
2544
|
* @param message The message to be sent to the client's console.
|
|
@@ -2521,7 +2548,7 @@ declare module ":s2sdk" {
|
|
|
2521
2548
|
/**
|
|
2522
2549
|
* @description Prints a message to a specific client in the chat area.
|
|
2523
2550
|
*
|
|
2524
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2551
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintToChat|Docs}
|
|
2525
2552
|
*
|
|
2526
2553
|
* @param playerSlot The index of the player's slot to whom the message will be sent.
|
|
2527
2554
|
* @param message The message to be printed in the chat area.
|
|
@@ -2531,7 +2558,7 @@ declare module ":s2sdk" {
|
|
|
2531
2558
|
/**
|
|
2532
2559
|
* @description Prints a message to a specific client in the center of the screen.
|
|
2533
2560
|
*
|
|
2534
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2561
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintCenterText|Docs}
|
|
2535
2562
|
*
|
|
2536
2563
|
* @param playerSlot The index of the player's slot to whom the message will be sent.
|
|
2537
2564
|
* @param message The message to be printed in the center of the screen.
|
|
@@ -2541,7 +2568,7 @@ declare module ":s2sdk" {
|
|
|
2541
2568
|
/**
|
|
2542
2569
|
* @description Prints a message to a specific client with an alert box.
|
|
2543
2570
|
*
|
|
2544
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2571
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintAlertText|Docs}
|
|
2545
2572
|
*
|
|
2546
2573
|
* @param playerSlot The index of the player's slot to whom the message will be sent.
|
|
2547
2574
|
* @param message The message to be printed in the alert box.
|
|
@@ -2551,7 +2578,7 @@ declare module ":s2sdk" {
|
|
|
2551
2578
|
/**
|
|
2552
2579
|
* @description Prints a html message to a specific client in the center of the screen.
|
|
2553
2580
|
*
|
|
2554
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2581
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintCentreHtml|Docs}
|
|
2555
2582
|
*
|
|
2556
2583
|
* @param playerSlot The index of the player's slot to whom the message will be sent.
|
|
2557
2584
|
* @param message The HTML-formatted message to be printed.
|
|
@@ -2561,7 +2588,7 @@ declare module ":s2sdk" {
|
|
|
2561
2588
|
/**
|
|
2562
2589
|
* @description Sends a message to every client's console.
|
|
2563
2590
|
*
|
|
2564
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2591
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintToConsoleAll|Docs}
|
|
2565
2592
|
*
|
|
2566
2593
|
* @param message The message to be sent to all clients' consoles.
|
|
2567
2594
|
*/
|
|
@@ -2570,7 +2597,7 @@ declare module ":s2sdk" {
|
|
|
2570
2597
|
/**
|
|
2571
2598
|
* @description Prints a message to all clients in the chat area.
|
|
2572
2599
|
*
|
|
2573
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2600
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintToChatAll|Docs}
|
|
2574
2601
|
*
|
|
2575
2602
|
* @param message The message to be printed in the chat area for all clients.
|
|
2576
2603
|
*/
|
|
@@ -2579,7 +2606,7 @@ declare module ":s2sdk" {
|
|
|
2579
2606
|
/**
|
|
2580
2607
|
* @description Prints a message to all clients in the center of the screen.
|
|
2581
2608
|
*
|
|
2582
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2609
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintCenterTextAll|Docs}
|
|
2583
2610
|
*
|
|
2584
2611
|
* @param message The message to be printed in the center of the screen for all clients.
|
|
2585
2612
|
*/
|
|
@@ -2588,7 +2615,7 @@ declare module ":s2sdk" {
|
|
|
2588
2615
|
/**
|
|
2589
2616
|
* @description Prints a message to all clients with an alert box.
|
|
2590
2617
|
*
|
|
2591
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2618
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintAlertTextAll|Docs}
|
|
2592
2619
|
*
|
|
2593
2620
|
* @param message The message to be printed in an alert box for all clients.
|
|
2594
2621
|
*/
|
|
@@ -2597,7 +2624,7 @@ declare module ":s2sdk" {
|
|
|
2597
2624
|
/**
|
|
2598
2625
|
* @description Prints a html message to all clients in the center of the screen.
|
|
2599
2626
|
*
|
|
2600
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2627
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintCentreHtmlAll|Docs}
|
|
2601
2628
|
*
|
|
2602
2629
|
* @param message The HTML-formatted message to be printed in the center of the screen for all clients.
|
|
2603
2630
|
*/
|
|
@@ -2606,7 +2633,7 @@ declare module ":s2sdk" {
|
|
|
2606
2633
|
/**
|
|
2607
2634
|
* @description Prints a colored message to a specific client in the chat area.
|
|
2608
2635
|
*
|
|
2609
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2636
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintToChatColored|Docs}
|
|
2610
2637
|
*
|
|
2611
2638
|
* @param playerSlot The index of the player's slot to whom the message will be sent.
|
|
2612
2639
|
* @param message The message to be printed in the chat area with color.
|
|
@@ -2616,7 +2643,7 @@ declare module ":s2sdk" {
|
|
|
2616
2643
|
/**
|
|
2617
2644
|
* @description Prints a colored message to all clients in the chat area.
|
|
2618
2645
|
*
|
|
2619
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2646
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrintToChatColoredAll|Docs}
|
|
2620
2647
|
*
|
|
2621
2648
|
* @param message The colored message to be printed in the chat area for all clients.
|
|
2622
2649
|
*/
|
|
@@ -2625,7 +2652,7 @@ declare module ":s2sdk" {
|
|
|
2625
2652
|
/**
|
|
2626
2653
|
* @description Creates a new console variable.
|
|
2627
2654
|
*
|
|
2628
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2655
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVar|Docs}
|
|
2629
2656
|
*
|
|
2630
2657
|
* @param name The name of the console variable.
|
|
2631
2658
|
* @param defaultValue The default value of the console variable.
|
|
@@ -2637,7 +2664,7 @@ declare module ":s2sdk" {
|
|
|
2637
2664
|
/**
|
|
2638
2665
|
* @description Creates a new boolean console variable.
|
|
2639
2666
|
*
|
|
2640
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2667
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarBool|Docs}
|
|
2641
2668
|
*
|
|
2642
2669
|
* @param name The name of the console variable.
|
|
2643
2670
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2653,7 +2680,7 @@ declare module ":s2sdk" {
|
|
|
2653
2680
|
/**
|
|
2654
2681
|
* @description Creates a new 16-bit signed integer console variable.
|
|
2655
2682
|
*
|
|
2656
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2683
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarInt16|Docs}
|
|
2657
2684
|
*
|
|
2658
2685
|
* @param name The name of the console variable.
|
|
2659
2686
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2669,7 +2696,7 @@ declare module ":s2sdk" {
|
|
|
2669
2696
|
/**
|
|
2670
2697
|
* @description Creates a new 16-bit unsigned integer console variable.
|
|
2671
2698
|
*
|
|
2672
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2699
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarUInt16|Docs}
|
|
2673
2700
|
*
|
|
2674
2701
|
* @param name The name of the console variable.
|
|
2675
2702
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2685,7 +2712,7 @@ declare module ":s2sdk" {
|
|
|
2685
2712
|
/**
|
|
2686
2713
|
* @description Creates a new 32-bit signed integer console variable.
|
|
2687
2714
|
*
|
|
2688
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2715
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarInt32|Docs}
|
|
2689
2716
|
*
|
|
2690
2717
|
* @param name The name of the console variable.
|
|
2691
2718
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2701,7 +2728,7 @@ declare module ":s2sdk" {
|
|
|
2701
2728
|
/**
|
|
2702
2729
|
* @description Creates a new 32-bit unsigned integer console variable.
|
|
2703
2730
|
*
|
|
2704
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2731
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarUInt32|Docs}
|
|
2705
2732
|
*
|
|
2706
2733
|
* @param name The name of the console variable.
|
|
2707
2734
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2717,7 +2744,7 @@ declare module ":s2sdk" {
|
|
|
2717
2744
|
/**
|
|
2718
2745
|
* @description Creates a new 64-bit signed integer console variable.
|
|
2719
2746
|
*
|
|
2720
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2747
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarInt64|Docs}
|
|
2721
2748
|
*
|
|
2722
2749
|
* @param name The name of the console variable.
|
|
2723
2750
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2733,7 +2760,7 @@ declare module ":s2sdk" {
|
|
|
2733
2760
|
/**
|
|
2734
2761
|
* @description Creates a new 64-bit unsigned integer console variable.
|
|
2735
2762
|
*
|
|
2736
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2763
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarUInt64|Docs}
|
|
2737
2764
|
*
|
|
2738
2765
|
* @param name The name of the console variable.
|
|
2739
2766
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2749,7 +2776,7 @@ declare module ":s2sdk" {
|
|
|
2749
2776
|
/**
|
|
2750
2777
|
* @description Creates a new floating-point console variable.
|
|
2751
2778
|
*
|
|
2752
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2779
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarFloat|Docs}
|
|
2753
2780
|
*
|
|
2754
2781
|
* @param name The name of the console variable.
|
|
2755
2782
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2765,7 +2792,7 @@ declare module ":s2sdk" {
|
|
|
2765
2792
|
/**
|
|
2766
2793
|
* @description Creates a new double-precision console variable.
|
|
2767
2794
|
*
|
|
2768
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2795
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarDouble|Docs}
|
|
2769
2796
|
*
|
|
2770
2797
|
* @param name The name of the console variable.
|
|
2771
2798
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2781,7 +2808,7 @@ declare module ":s2sdk" {
|
|
|
2781
2808
|
/**
|
|
2782
2809
|
* @description Creates a new color console variable.
|
|
2783
2810
|
*
|
|
2784
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2811
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarColor|Docs}
|
|
2785
2812
|
*
|
|
2786
2813
|
* @param name The name of the console variable.
|
|
2787
2814
|
* @param defaultValue The default color value for the console variable.
|
|
@@ -2797,7 +2824,7 @@ declare module ":s2sdk" {
|
|
|
2797
2824
|
/**
|
|
2798
2825
|
* @description Creates a new 2D vector console variable.
|
|
2799
2826
|
*
|
|
2800
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2827
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarVector2|Docs}
|
|
2801
2828
|
*
|
|
2802
2829
|
* @param name The name of the console variable.
|
|
2803
2830
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2813,7 +2840,7 @@ declare module ":s2sdk" {
|
|
|
2813
2840
|
/**
|
|
2814
2841
|
* @description Creates a new 3D vector console variable.
|
|
2815
2842
|
*
|
|
2816
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2843
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarVector3|Docs}
|
|
2817
2844
|
*
|
|
2818
2845
|
* @param name The name of the console variable.
|
|
2819
2846
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2829,7 +2856,7 @@ declare module ":s2sdk" {
|
|
|
2829
2856
|
/**
|
|
2830
2857
|
* @description Creates a new 4D vector console variable.
|
|
2831
2858
|
*
|
|
2832
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2859
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarVector4|Docs}
|
|
2833
2860
|
*
|
|
2834
2861
|
* @param name The name of the console variable.
|
|
2835
2862
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2845,7 +2872,7 @@ declare module ":s2sdk" {
|
|
|
2845
2872
|
/**
|
|
2846
2873
|
* @description Creates a new quaternion angle console variable.
|
|
2847
2874
|
*
|
|
2848
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2875
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateConVarQAngle|Docs}
|
|
2849
2876
|
*
|
|
2850
2877
|
* @param name The name of the console variable.
|
|
2851
2878
|
* @param defaultValue The default value for the console variable.
|
|
@@ -2861,7 +2888,7 @@ declare module ":s2sdk" {
|
|
|
2861
2888
|
/**
|
|
2862
2889
|
* @description Searches for a console variable.
|
|
2863
2890
|
*
|
|
2864
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2891
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-FindConVar|Docs}
|
|
2865
2892
|
*
|
|
2866
2893
|
* @param name The name of the console variable to search for.
|
|
2867
2894
|
*/
|
|
@@ -2870,7 +2897,7 @@ declare module ":s2sdk" {
|
|
|
2870
2897
|
/**
|
|
2871
2898
|
* @description Searches for a console variable of a specific type.
|
|
2872
2899
|
*
|
|
2873
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2900
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-FindConVar2|Docs}
|
|
2874
2901
|
*
|
|
2875
2902
|
* @param name The name of the console variable to search for.
|
|
2876
2903
|
* @param type The type of the console variable to search for.
|
|
@@ -2880,7 +2907,7 @@ declare module ":s2sdk" {
|
|
|
2880
2907
|
/**
|
|
2881
2908
|
* @description Creates a hook for when a console variable's value is changed.
|
|
2882
2909
|
*
|
|
2883
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2910
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-HookConVarChange|Docs}
|
|
2884
2911
|
*
|
|
2885
2912
|
* @param name The name of the console variable to hook.
|
|
2886
2913
|
* @param callback The callback function to be executed when the variable's value changes.
|
|
@@ -2890,7 +2917,7 @@ declare module ":s2sdk" {
|
|
|
2890
2917
|
/**
|
|
2891
2918
|
* @description Removes a hook for when a console variable's value is changed.
|
|
2892
2919
|
*
|
|
2893
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2920
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UnhookConVarChange|Docs}
|
|
2894
2921
|
*
|
|
2895
2922
|
* @param name The name of the console variable to unhook.
|
|
2896
2923
|
* @param callback The callback function to be removed.
|
|
@@ -2900,7 +2927,7 @@ declare module ":s2sdk" {
|
|
|
2900
2927
|
/**
|
|
2901
2928
|
* @description Checks if a specific flag is set for a console variable.
|
|
2902
2929
|
*
|
|
2903
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2930
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsConVarFlagSet|Docs}
|
|
2904
2931
|
*
|
|
2905
2932
|
* @param conVarHandle The handle to the console variable data.
|
|
2906
2933
|
* @param flag The flag to check against the console variable.
|
|
@@ -2910,7 +2937,7 @@ declare module ":s2sdk" {
|
|
|
2910
2937
|
/**
|
|
2911
2938
|
* @description Adds flags to a console variable.
|
|
2912
2939
|
*
|
|
2913
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2940
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-AddConVarFlags|Docs}
|
|
2914
2941
|
*
|
|
2915
2942
|
* @param conVarHandle The handle to the console variable data.
|
|
2916
2943
|
* @param flags The flags to be added.
|
|
@@ -2920,7 +2947,7 @@ declare module ":s2sdk" {
|
|
|
2920
2947
|
/**
|
|
2921
2948
|
* @description Removes flags from a console variable.
|
|
2922
2949
|
*
|
|
2923
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2950
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-RemoveConVarFlags|Docs}
|
|
2924
2951
|
*
|
|
2925
2952
|
* @param conVarHandle The handle to the console variable data.
|
|
2926
2953
|
* @param flags The flags to be removed.
|
|
@@ -2930,7 +2957,7 @@ declare module ":s2sdk" {
|
|
|
2930
2957
|
/**
|
|
2931
2958
|
* @description Retrieves the current flags of a console variable.
|
|
2932
2959
|
*
|
|
2933
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2960
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarFlags|Docs}
|
|
2934
2961
|
*
|
|
2935
2962
|
* @param conVarHandle The handle to the console variable data.
|
|
2936
2963
|
*/
|
|
@@ -2939,7 +2966,7 @@ declare module ":s2sdk" {
|
|
|
2939
2966
|
/**
|
|
2940
2967
|
* @description Gets the specified bound (max or min) of a console variable and stores it in the output string.
|
|
2941
2968
|
*
|
|
2942
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2969
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarBounds|Docs}
|
|
2943
2970
|
*
|
|
2944
2971
|
* @param conVarHandle The handle to the console variable data.
|
|
2945
2972
|
* @param max Indicates whether to get the maximum (true) or minimum (false) bound.
|
|
@@ -2949,7 +2976,7 @@ declare module ":s2sdk" {
|
|
|
2949
2976
|
/**
|
|
2950
2977
|
* @description Sets the specified bound (max or min) for a console variable.
|
|
2951
2978
|
*
|
|
2952
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2979
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarBounds|Docs}
|
|
2953
2980
|
*
|
|
2954
2981
|
* @param conVarHandle The handle to the console variable data.
|
|
2955
2982
|
* @param max Indicates whether to set the maximum (true) or minimum (false) bound.
|
|
@@ -2960,7 +2987,7 @@ declare module ":s2sdk" {
|
|
|
2960
2987
|
/**
|
|
2961
2988
|
* @description Retrieves the default value of a console variable and stores it in the output string.
|
|
2962
2989
|
*
|
|
2963
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2990
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarDefault|Docs}
|
|
2964
2991
|
*
|
|
2965
2992
|
* @param conVarHandle The handle to the console variable data.
|
|
2966
2993
|
*/
|
|
@@ -2969,7 +2996,7 @@ declare module ":s2sdk" {
|
|
|
2969
2996
|
/**
|
|
2970
2997
|
* @description Retrieves the current value of a console variable and stores it in the output string.
|
|
2971
2998
|
*
|
|
2972
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
2999
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarValue|Docs}
|
|
2973
3000
|
*
|
|
2974
3001
|
* @param conVarHandle The handle to the console variable data.
|
|
2975
3002
|
*/
|
|
@@ -2978,7 +3005,7 @@ declare module ":s2sdk" {
|
|
|
2978
3005
|
/**
|
|
2979
3006
|
* @description Retrieves the current value of a console variable and stores it in the output.
|
|
2980
3007
|
*
|
|
2981
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3008
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVar|Docs}
|
|
2982
3009
|
*
|
|
2983
3010
|
* @param conVarHandle The handle to the console variable data.
|
|
2984
3011
|
*/
|
|
@@ -2987,7 +3014,7 @@ declare module ":s2sdk" {
|
|
|
2987
3014
|
/**
|
|
2988
3015
|
* @description Retrieves the current value of a boolean console variable.
|
|
2989
3016
|
*
|
|
2990
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3017
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarBool|Docs}
|
|
2991
3018
|
*
|
|
2992
3019
|
* @param conVarHandle The handle to the console variable data.
|
|
2993
3020
|
*/
|
|
@@ -2996,7 +3023,7 @@ declare module ":s2sdk" {
|
|
|
2996
3023
|
/**
|
|
2997
3024
|
* @description Retrieves the current value of a signed 16-bit integer console variable.
|
|
2998
3025
|
*
|
|
2999
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3026
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarInt16|Docs}
|
|
3000
3027
|
*
|
|
3001
3028
|
* @param conVarHandle The handle to the console variable data.
|
|
3002
3029
|
*/
|
|
@@ -3005,7 +3032,7 @@ declare module ":s2sdk" {
|
|
|
3005
3032
|
/**
|
|
3006
3033
|
* @description Retrieves the current value of an unsigned 16-bit integer console variable.
|
|
3007
3034
|
*
|
|
3008
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3035
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarUInt16|Docs}
|
|
3009
3036
|
*
|
|
3010
3037
|
* @param conVarHandle The handle to the console variable data.
|
|
3011
3038
|
*/
|
|
@@ -3014,7 +3041,7 @@ declare module ":s2sdk" {
|
|
|
3014
3041
|
/**
|
|
3015
3042
|
* @description Retrieves the current value of a signed 32-bit integer console variable.
|
|
3016
3043
|
*
|
|
3017
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3044
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarInt32|Docs}
|
|
3018
3045
|
*
|
|
3019
3046
|
* @param conVarHandle The handle to the console variable data.
|
|
3020
3047
|
*/
|
|
@@ -3023,7 +3050,7 @@ declare module ":s2sdk" {
|
|
|
3023
3050
|
/**
|
|
3024
3051
|
* @description Retrieves the current value of an unsigned 32-bit integer console variable.
|
|
3025
3052
|
*
|
|
3026
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3053
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarUInt32|Docs}
|
|
3027
3054
|
*
|
|
3028
3055
|
* @param conVarHandle The handle to the console variable data.
|
|
3029
3056
|
*/
|
|
@@ -3032,7 +3059,7 @@ declare module ":s2sdk" {
|
|
|
3032
3059
|
/**
|
|
3033
3060
|
* @description Retrieves the current value of a signed 64-bit integer console variable.
|
|
3034
3061
|
*
|
|
3035
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3062
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarInt64|Docs}
|
|
3036
3063
|
*
|
|
3037
3064
|
* @param conVarHandle The handle to the console variable data.
|
|
3038
3065
|
*/
|
|
@@ -3041,7 +3068,7 @@ declare module ":s2sdk" {
|
|
|
3041
3068
|
/**
|
|
3042
3069
|
* @description Retrieves the current value of an unsigned 64-bit integer console variable.
|
|
3043
3070
|
*
|
|
3044
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3071
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarUInt64|Docs}
|
|
3045
3072
|
*
|
|
3046
3073
|
* @param conVarHandle The handle to the console variable data.
|
|
3047
3074
|
*/
|
|
@@ -3050,7 +3077,7 @@ declare module ":s2sdk" {
|
|
|
3050
3077
|
/**
|
|
3051
3078
|
* @description Retrieves the current value of a float console variable.
|
|
3052
3079
|
*
|
|
3053
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3080
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarFloat|Docs}
|
|
3054
3081
|
*
|
|
3055
3082
|
* @param conVarHandle The handle to the console variable data.
|
|
3056
3083
|
*/
|
|
@@ -3059,7 +3086,7 @@ declare module ":s2sdk" {
|
|
|
3059
3086
|
/**
|
|
3060
3087
|
* @description Retrieves the current value of a double console variable.
|
|
3061
3088
|
*
|
|
3062
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3089
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarDouble|Docs}
|
|
3063
3090
|
*
|
|
3064
3091
|
* @param conVarHandle The handle to the console variable data.
|
|
3065
3092
|
*/
|
|
@@ -3068,7 +3095,7 @@ declare module ":s2sdk" {
|
|
|
3068
3095
|
/**
|
|
3069
3096
|
* @description Retrieves the current value of a string console variable.
|
|
3070
3097
|
*
|
|
3071
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3098
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarString|Docs}
|
|
3072
3099
|
*
|
|
3073
3100
|
* @param conVarHandle The handle to the console variable data.
|
|
3074
3101
|
*/
|
|
@@ -3077,7 +3104,7 @@ declare module ":s2sdk" {
|
|
|
3077
3104
|
/**
|
|
3078
3105
|
* @description Retrieves the current value of a Color console variable.
|
|
3079
3106
|
*
|
|
3080
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3107
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarColor|Docs}
|
|
3081
3108
|
*
|
|
3082
3109
|
* @param conVarHandle The handle to the console variable data.
|
|
3083
3110
|
*/
|
|
@@ -3086,7 +3113,7 @@ declare module ":s2sdk" {
|
|
|
3086
3113
|
/**
|
|
3087
3114
|
* @description Retrieves the current value of a Vector2D console variable.
|
|
3088
3115
|
*
|
|
3089
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3116
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarVector2|Docs}
|
|
3090
3117
|
*
|
|
3091
3118
|
* @param conVarHandle The handle to the console variable data.
|
|
3092
3119
|
*/
|
|
@@ -3095,7 +3122,7 @@ declare module ":s2sdk" {
|
|
|
3095
3122
|
/**
|
|
3096
3123
|
* @description Retrieves the current value of a Vector console variable.
|
|
3097
3124
|
*
|
|
3098
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3125
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarVector|Docs}
|
|
3099
3126
|
*
|
|
3100
3127
|
* @param conVarHandle The handle to the console variable data.
|
|
3101
3128
|
*/
|
|
@@ -3104,7 +3131,7 @@ declare module ":s2sdk" {
|
|
|
3104
3131
|
/**
|
|
3105
3132
|
* @description Retrieves the current value of a Vector4D console variable.
|
|
3106
3133
|
*
|
|
3107
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3134
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarVector4|Docs}
|
|
3108
3135
|
*
|
|
3109
3136
|
* @param conVarHandle The handle to the console variable data.
|
|
3110
3137
|
*/
|
|
@@ -3113,7 +3140,7 @@ declare module ":s2sdk" {
|
|
|
3113
3140
|
/**
|
|
3114
3141
|
* @description Retrieves the current value of a QAngle console variable.
|
|
3115
3142
|
*
|
|
3116
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3143
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConVarQAngle|Docs}
|
|
3117
3144
|
*
|
|
3118
3145
|
* @param conVarHandle The handle to the console variable data.
|
|
3119
3146
|
*/
|
|
@@ -3122,7 +3149,7 @@ declare module ":s2sdk" {
|
|
|
3122
3149
|
/**
|
|
3123
3150
|
* @description Sets the value of a console variable.
|
|
3124
3151
|
*
|
|
3125
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3152
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarValue|Docs}
|
|
3126
3153
|
*
|
|
3127
3154
|
* @param conVarHandle The handle to the console variable data.
|
|
3128
3155
|
* @param value The string value to set for the console variable.
|
|
@@ -3134,7 +3161,7 @@ declare module ":s2sdk" {
|
|
|
3134
3161
|
/**
|
|
3135
3162
|
* @description Sets the value of a console variable.
|
|
3136
3163
|
*
|
|
3137
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3164
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVar|Docs}
|
|
3138
3165
|
*
|
|
3139
3166
|
* @param conVarHandle The handle to the console variable data.
|
|
3140
3167
|
* @param value The value to set for the console variable.
|
|
@@ -3146,7 +3173,7 @@ declare module ":s2sdk" {
|
|
|
3146
3173
|
/**
|
|
3147
3174
|
* @description Sets the value of a boolean console variable.
|
|
3148
3175
|
*
|
|
3149
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3176
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarBool|Docs}
|
|
3150
3177
|
*
|
|
3151
3178
|
* @param conVarHandle The handle to the console variable data.
|
|
3152
3179
|
* @param value The value to set for the console variable.
|
|
@@ -3158,7 +3185,7 @@ declare module ":s2sdk" {
|
|
|
3158
3185
|
/**
|
|
3159
3186
|
* @description Sets the value of a signed 16-bit integer console variable.
|
|
3160
3187
|
*
|
|
3161
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3188
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarInt16|Docs}
|
|
3162
3189
|
*
|
|
3163
3190
|
* @param conVarHandle The handle to the console variable data.
|
|
3164
3191
|
* @param value The value to set for the console variable.
|
|
@@ -3170,7 +3197,7 @@ declare module ":s2sdk" {
|
|
|
3170
3197
|
/**
|
|
3171
3198
|
* @description Sets the value of an unsigned 16-bit integer console variable.
|
|
3172
3199
|
*
|
|
3173
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3200
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarUInt16|Docs}
|
|
3174
3201
|
*
|
|
3175
3202
|
* @param conVarHandle The handle to the console variable data.
|
|
3176
3203
|
* @param value The value to set for the console variable.
|
|
@@ -3182,7 +3209,7 @@ declare module ":s2sdk" {
|
|
|
3182
3209
|
/**
|
|
3183
3210
|
* @description Sets the value of a signed 32-bit integer console variable.
|
|
3184
3211
|
*
|
|
3185
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3212
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarInt32|Docs}
|
|
3186
3213
|
*
|
|
3187
3214
|
* @param conVarHandle The handle to the console variable data.
|
|
3188
3215
|
* @param value The value to set for the console variable.
|
|
@@ -3194,7 +3221,7 @@ declare module ":s2sdk" {
|
|
|
3194
3221
|
/**
|
|
3195
3222
|
* @description Sets the value of an unsigned 32-bit integer console variable.
|
|
3196
3223
|
*
|
|
3197
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3224
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarUInt32|Docs}
|
|
3198
3225
|
*
|
|
3199
3226
|
* @param conVarHandle The handle to the console variable data.
|
|
3200
3227
|
* @param value The value to set for the console variable.
|
|
@@ -3206,7 +3233,7 @@ declare module ":s2sdk" {
|
|
|
3206
3233
|
/**
|
|
3207
3234
|
* @description Sets the value of a signed 64-bit integer console variable.
|
|
3208
3235
|
*
|
|
3209
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3236
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarInt64|Docs}
|
|
3210
3237
|
*
|
|
3211
3238
|
* @param conVarHandle The handle to the console variable data.
|
|
3212
3239
|
* @param value The value to set for the console variable.
|
|
@@ -3218,7 +3245,7 @@ declare module ":s2sdk" {
|
|
|
3218
3245
|
/**
|
|
3219
3246
|
* @description Sets the value of an unsigned 64-bit integer console variable.
|
|
3220
3247
|
*
|
|
3221
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3248
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarUInt64|Docs}
|
|
3222
3249
|
*
|
|
3223
3250
|
* @param conVarHandle The handle to the console variable data.
|
|
3224
3251
|
* @param value The value to set for the console variable.
|
|
@@ -3230,7 +3257,7 @@ declare module ":s2sdk" {
|
|
|
3230
3257
|
/**
|
|
3231
3258
|
* @description Sets the value of a floating-point console variable.
|
|
3232
3259
|
*
|
|
3233
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3260
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarFloat|Docs}
|
|
3234
3261
|
*
|
|
3235
3262
|
* @param conVarHandle The handle to the console variable data.
|
|
3236
3263
|
* @param value The value to set for the console variable.
|
|
@@ -3242,7 +3269,7 @@ declare module ":s2sdk" {
|
|
|
3242
3269
|
/**
|
|
3243
3270
|
* @description Sets the value of a double-precision floating-point console variable.
|
|
3244
3271
|
*
|
|
3245
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3272
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarDouble|Docs}
|
|
3246
3273
|
*
|
|
3247
3274
|
* @param conVarHandle The handle to the console variable data.
|
|
3248
3275
|
* @param value The value to set for the console variable.
|
|
@@ -3254,7 +3281,7 @@ declare module ":s2sdk" {
|
|
|
3254
3281
|
/**
|
|
3255
3282
|
* @description Sets the value of a string console variable.
|
|
3256
3283
|
*
|
|
3257
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3284
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarString|Docs}
|
|
3258
3285
|
*
|
|
3259
3286
|
* @param conVarHandle The handle to the console variable data.
|
|
3260
3287
|
* @param value The value to set for the console variable.
|
|
@@ -3266,7 +3293,7 @@ declare module ":s2sdk" {
|
|
|
3266
3293
|
/**
|
|
3267
3294
|
* @description Sets the value of a color console variable.
|
|
3268
3295
|
*
|
|
3269
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3296
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarColor|Docs}
|
|
3270
3297
|
*
|
|
3271
3298
|
* @param conVarHandle The handle to the console variable data.
|
|
3272
3299
|
* @param value The value to set for the console variable.
|
|
@@ -3278,7 +3305,7 @@ declare module ":s2sdk" {
|
|
|
3278
3305
|
/**
|
|
3279
3306
|
* @description Sets the value of a 2D vector console variable.
|
|
3280
3307
|
*
|
|
3281
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3308
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarVector2|Docs}
|
|
3282
3309
|
*
|
|
3283
3310
|
* @param conVarHandle The handle to the console variable data.
|
|
3284
3311
|
* @param value The value to set for the console variable.
|
|
@@ -3290,7 +3317,7 @@ declare module ":s2sdk" {
|
|
|
3290
3317
|
/**
|
|
3291
3318
|
* @description Sets the value of a 3D vector console variable.
|
|
3292
3319
|
*
|
|
3293
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3320
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarVector3|Docs}
|
|
3294
3321
|
*
|
|
3295
3322
|
* @param conVarHandle The handle to the console variable data.
|
|
3296
3323
|
* @param value The value to set for the console variable.
|
|
@@ -3302,7 +3329,7 @@ declare module ":s2sdk" {
|
|
|
3302
3329
|
/**
|
|
3303
3330
|
* @description Sets the value of a 4D vector console variable.
|
|
3304
3331
|
*
|
|
3305
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3332
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarVector4|Docs}
|
|
3306
3333
|
*
|
|
3307
3334
|
* @param conVarHandle The handle to the console variable data.
|
|
3308
3335
|
* @param value The value to set for the console variable.
|
|
@@ -3314,7 +3341,7 @@ declare module ":s2sdk" {
|
|
|
3314
3341
|
/**
|
|
3315
3342
|
* @description Sets the value of a quaternion angle console variable.
|
|
3316
3343
|
*
|
|
3317
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3344
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetConVarQAngle|Docs}
|
|
3318
3345
|
*
|
|
3319
3346
|
* @param conVarHandle The handle to the console variable data.
|
|
3320
3347
|
* @param value The value to set for the console variable.
|
|
@@ -3326,7 +3353,7 @@ declare module ":s2sdk" {
|
|
|
3326
3353
|
/**
|
|
3327
3354
|
* @description Replicates a console variable value to a specific client. This does not change the actual console variable value.
|
|
3328
3355
|
*
|
|
3329
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3356
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SendConVarValue|Docs}
|
|
3330
3357
|
*
|
|
3331
3358
|
* @param playerSlot The index of the client to replicate the value to.
|
|
3332
3359
|
* @param conVarHandle The handle to the console variable data.
|
|
@@ -3337,7 +3364,7 @@ declare module ":s2sdk" {
|
|
|
3337
3364
|
/**
|
|
3338
3365
|
* @description Retrieves the value of a client's console variable and stores it in the output string.
|
|
3339
3366
|
*
|
|
3340
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3367
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetClientConVarValue|Docs}
|
|
3341
3368
|
*
|
|
3342
3369
|
* @param playerSlot The index of the client whose console variable value is being retrieved.
|
|
3343
3370
|
* @param convarName The name of the console variable to retrieve.
|
|
@@ -3347,7 +3374,7 @@ declare module ":s2sdk" {
|
|
|
3347
3374
|
/**
|
|
3348
3375
|
* @description Replicates a console variable value to a specific fake client. This does not change the actual console variable value.
|
|
3349
3376
|
*
|
|
3350
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3377
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetFakeClientConVarValue|Docs}
|
|
3351
3378
|
*
|
|
3352
3379
|
* @param playerSlot The index of the fake client to replicate the value to.
|
|
3353
3380
|
* @param convarName The name of the console variable.
|
|
@@ -3358,7 +3385,7 @@ declare module ":s2sdk" {
|
|
|
3358
3385
|
/**
|
|
3359
3386
|
* @description Finds a module by name.
|
|
3360
3387
|
*
|
|
3361
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3388
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-FindModule|Docs}
|
|
3362
3389
|
*
|
|
3363
3390
|
* @param name The name of the module to find.
|
|
3364
3391
|
*/
|
|
@@ -3367,7 +3394,7 @@ declare module ":s2sdk" {
|
|
|
3367
3394
|
/**
|
|
3368
3395
|
* @description Finds an interface by name.
|
|
3369
3396
|
*
|
|
3370
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3397
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-FindInterface|Docs}
|
|
3371
3398
|
*
|
|
3372
3399
|
* @param name The name of the interface to find.
|
|
3373
3400
|
*/
|
|
@@ -3376,7 +3403,7 @@ declare module ":s2sdk" {
|
|
|
3376
3403
|
/**
|
|
3377
3404
|
* @description Queries an interface from a specified module.
|
|
3378
3405
|
*
|
|
3379
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3406
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-QueryInterface|Docs}
|
|
3380
3407
|
*
|
|
3381
3408
|
* @param module The name of the module to query the interface from.
|
|
3382
3409
|
* @param name The name of the interface to find.
|
|
@@ -3386,7 +3413,7 @@ declare module ":s2sdk" {
|
|
|
3386
3413
|
/**
|
|
3387
3414
|
* @description Returns the path of the game's directory.
|
|
3388
3415
|
*
|
|
3389
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3416
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameDirectory|Docs}
|
|
3390
3417
|
*
|
|
3391
3418
|
*
|
|
3392
3419
|
*/
|
|
@@ -3395,7 +3422,7 @@ declare module ":s2sdk" {
|
|
|
3395
3422
|
/**
|
|
3396
3423
|
* @description Returns the current map name.
|
|
3397
3424
|
*
|
|
3398
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3425
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetCurrentMap|Docs}
|
|
3399
3426
|
*
|
|
3400
3427
|
*
|
|
3401
3428
|
*/
|
|
@@ -3404,7 +3431,7 @@ declare module ":s2sdk" {
|
|
|
3404
3431
|
/**
|
|
3405
3432
|
* @description Returns whether a specified map is valid or not.
|
|
3406
3433
|
*
|
|
3407
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3434
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsMapValid|Docs}
|
|
3408
3435
|
*
|
|
3409
3436
|
* @param mapname The name of the map to check for validity.
|
|
3410
3437
|
*/
|
|
@@ -3413,7 +3440,7 @@ declare module ":s2sdk" {
|
|
|
3413
3440
|
/**
|
|
3414
3441
|
* @description Returns the game time based on the game tick.
|
|
3415
3442
|
*
|
|
3416
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3443
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameTime|Docs}
|
|
3417
3444
|
*
|
|
3418
3445
|
*
|
|
3419
3446
|
*/
|
|
@@ -3422,7 +3449,7 @@ declare module ":s2sdk" {
|
|
|
3422
3449
|
/**
|
|
3423
3450
|
* @description Returns the game's internal tick count.
|
|
3424
3451
|
*
|
|
3425
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3452
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameTickCount|Docs}
|
|
3426
3453
|
*
|
|
3427
3454
|
*
|
|
3428
3455
|
*/
|
|
@@ -3431,7 +3458,7 @@ declare module ":s2sdk" {
|
|
|
3431
3458
|
/**
|
|
3432
3459
|
* @description Returns the time the game took processing the last frame.
|
|
3433
3460
|
*
|
|
3434
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3461
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameFrameTime|Docs}
|
|
3435
3462
|
*
|
|
3436
3463
|
*
|
|
3437
3464
|
*/
|
|
@@ -3440,7 +3467,7 @@ declare module ":s2sdk" {
|
|
|
3440
3467
|
/**
|
|
3441
3468
|
* @description Returns a high-precision time value for profiling the engine.
|
|
3442
3469
|
*
|
|
3443
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3470
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEngineTime|Docs}
|
|
3444
3471
|
*
|
|
3445
3472
|
*
|
|
3446
3473
|
*/
|
|
@@ -3449,7 +3476,7 @@ declare module ":s2sdk" {
|
|
|
3449
3476
|
/**
|
|
3450
3477
|
* @description Returns the maximum number of clients that can connect to the server.
|
|
3451
3478
|
*
|
|
3452
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3479
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetMaxClients|Docs}
|
|
3453
3480
|
*
|
|
3454
3481
|
*
|
|
3455
3482
|
*/
|
|
@@ -3458,7 +3485,7 @@ declare module ":s2sdk" {
|
|
|
3458
3485
|
/**
|
|
3459
3486
|
* @description Precaches a given generic file.
|
|
3460
3487
|
*
|
|
3461
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3488
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrecacheGeneric|Docs}
|
|
3462
3489
|
*
|
|
3463
3490
|
* @param model The name of the model to be precached.
|
|
3464
3491
|
*/
|
|
@@ -3467,7 +3494,7 @@ declare module ":s2sdk" {
|
|
|
3467
3494
|
/**
|
|
3468
3495
|
* @description Checks if a specified generic file is precached.
|
|
3469
3496
|
*
|
|
3470
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3497
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsGenericPrecache|Docs}
|
|
3471
3498
|
*
|
|
3472
3499
|
* @param model The name of the generic file to check.
|
|
3473
3500
|
*/
|
|
@@ -3476,7 +3503,7 @@ declare module ":s2sdk" {
|
|
|
3476
3503
|
/**
|
|
3477
3504
|
* @description Precaches a specified model.
|
|
3478
3505
|
*
|
|
3479
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3506
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrecacheModel|Docs}
|
|
3480
3507
|
*
|
|
3481
3508
|
* @param model The name of the model to be precached.
|
|
3482
3509
|
*/
|
|
@@ -3485,7 +3512,7 @@ declare module ":s2sdk" {
|
|
|
3485
3512
|
/**
|
|
3486
3513
|
* @description Checks if a specified model is precached.
|
|
3487
3514
|
*
|
|
3488
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3515
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsModelPrecache|Docs}
|
|
3489
3516
|
*
|
|
3490
3517
|
* @param model The name of the model to check.
|
|
3491
3518
|
*/
|
|
@@ -3494,7 +3521,7 @@ declare module ":s2sdk" {
|
|
|
3494
3521
|
/**
|
|
3495
3522
|
* @description Precaches a specified sound.
|
|
3496
3523
|
*
|
|
3497
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3524
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PrecacheSound|Docs}
|
|
3498
3525
|
*
|
|
3499
3526
|
* @param sound The name of the sound to be precached.
|
|
3500
3527
|
* @param preload A boolean indicating if the sound should be preloaded.
|
|
@@ -3504,7 +3531,7 @@ declare module ":s2sdk" {
|
|
|
3504
3531
|
/**
|
|
3505
3532
|
* @description Checks if a specified sound is precached.
|
|
3506
3533
|
*
|
|
3507
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3534
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsSoundPrecached|Docs}
|
|
3508
3535
|
*
|
|
3509
3536
|
* @param sound The name of the sound to check.
|
|
3510
3537
|
*/
|
|
@@ -3513,7 +3540,7 @@ declare module ":s2sdk" {
|
|
|
3513
3540
|
/**
|
|
3514
3541
|
* @description Returns a pointer to the Economy Item System.
|
|
3515
3542
|
*
|
|
3516
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3543
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEconItemSystem|Docs}
|
|
3517
3544
|
*
|
|
3518
3545
|
*
|
|
3519
3546
|
*/
|
|
@@ -3522,7 +3549,7 @@ declare module ":s2sdk" {
|
|
|
3522
3549
|
/**
|
|
3523
3550
|
* @description Checks if the server is currently paused.
|
|
3524
3551
|
*
|
|
3525
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3552
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsServerPaused|Docs}
|
|
3526
3553
|
*
|
|
3527
3554
|
*
|
|
3528
3555
|
*/
|
|
@@ -3531,7 +3558,7 @@ declare module ":s2sdk" {
|
|
|
3531
3558
|
/**
|
|
3532
3559
|
* @description Queues a task to be executed on the next frame.
|
|
3533
3560
|
*
|
|
3534
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3561
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-QueueTaskForNextFrame|Docs}
|
|
3535
3562
|
*
|
|
3536
3563
|
* @param callback A callback function to be executed on the next frame.
|
|
3537
3564
|
* @param userData An array intended to hold user-related data, allowing for elements of any type.
|
|
@@ -3541,7 +3568,7 @@ declare module ":s2sdk" {
|
|
|
3541
3568
|
/**
|
|
3542
3569
|
* @description Queues a task to be executed on the next world update.
|
|
3543
3570
|
*
|
|
3544
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3571
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-QueueTaskForNextWorldUpdate|Docs}
|
|
3545
3572
|
*
|
|
3546
3573
|
* @param callback A callback function to be executed on the next world update.
|
|
3547
3574
|
* @param userData An array intended to hold user-related data, allowing for elements of any type.
|
|
@@ -3551,7 +3578,7 @@ declare module ":s2sdk" {
|
|
|
3551
3578
|
/**
|
|
3552
3579
|
* @description Returns the duration of a specified sound.
|
|
3553
3580
|
*
|
|
3554
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3581
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetSoundDuration|Docs}
|
|
3555
3582
|
*
|
|
3556
3583
|
* @param name The name of the sound to check.
|
|
3557
3584
|
*/
|
|
@@ -3560,7 +3587,7 @@ declare module ":s2sdk" {
|
|
|
3560
3587
|
/**
|
|
3561
3588
|
* @description Emits a sound from a specified entity.
|
|
3562
3589
|
*
|
|
3563
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3590
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-EmitSound|Docs}
|
|
3564
3591
|
*
|
|
3565
3592
|
* @param entityHandle The handle of the entity that will emit the sound.
|
|
3566
3593
|
* @param sound The name of the sound to emit.
|
|
@@ -3573,7 +3600,7 @@ declare module ":s2sdk" {
|
|
|
3573
3600
|
/**
|
|
3574
3601
|
* @description Emits a sound to a specific client.
|
|
3575
3602
|
*
|
|
3576
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3603
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-EmitSoundToClient|Docs}
|
|
3577
3604
|
*
|
|
3578
3605
|
* @param playerSlot The index of the client to whom the sound will be emitted.
|
|
3579
3606
|
* @param channel The channel through which the sound will be played.
|
|
@@ -3590,7 +3617,7 @@ declare module ":s2sdk" {
|
|
|
3590
3617
|
/**
|
|
3591
3618
|
* @description Converts an entity index into an entity pointer.
|
|
3592
3619
|
*
|
|
3593
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3620
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-EntIndexToEntPointer|Docs}
|
|
3594
3621
|
*
|
|
3595
3622
|
* @param entityIndex The index of the entity to convert.
|
|
3596
3623
|
*/
|
|
@@ -3599,7 +3626,7 @@ declare module ":s2sdk" {
|
|
|
3599
3626
|
/**
|
|
3600
3627
|
* @description Retrieves the entity index from an entity pointer.
|
|
3601
3628
|
*
|
|
3602
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3629
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-EntPointerToEntIndex|Docs}
|
|
3603
3630
|
*
|
|
3604
3631
|
* @param entity A pointer to the entity whose index is to be retrieved.
|
|
3605
3632
|
*/
|
|
@@ -3608,7 +3635,7 @@ declare module ":s2sdk" {
|
|
|
3608
3635
|
/**
|
|
3609
3636
|
* @description Converts an entity pointer into an entity handle.
|
|
3610
3637
|
*
|
|
3611
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3638
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-EntPointerToEntHandle|Docs}
|
|
3612
3639
|
*
|
|
3613
3640
|
* @param entity A pointer to the entity to convert.
|
|
3614
3641
|
*/
|
|
@@ -3617,7 +3644,7 @@ declare module ":s2sdk" {
|
|
|
3617
3644
|
/**
|
|
3618
3645
|
* @description Retrieves the entity pointer from an entity handle.
|
|
3619
3646
|
*
|
|
3620
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3647
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-EntHandleToEntPointer|Docs}
|
|
3621
3648
|
*
|
|
3622
3649
|
* @param entityHandle The entity handle to convert.
|
|
3623
3650
|
*/
|
|
@@ -3626,7 +3653,7 @@ declare module ":s2sdk" {
|
|
|
3626
3653
|
/**
|
|
3627
3654
|
* @description Converts an entity index into an entity handle.
|
|
3628
3655
|
*
|
|
3629
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3656
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-EntIndexToEntHandle|Docs}
|
|
3630
3657
|
*
|
|
3631
3658
|
* @param entityIndex The index of the entity to convert.
|
|
3632
3659
|
*/
|
|
@@ -3635,7 +3662,7 @@ declare module ":s2sdk" {
|
|
|
3635
3662
|
/**
|
|
3636
3663
|
* @description Retrieves the entity index from an entity handle.
|
|
3637
3664
|
*
|
|
3638
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3665
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-EntHandleToEntIndex|Docs}
|
|
3639
3666
|
*
|
|
3640
3667
|
* @param entityHandle The entity handle from which to retrieve the index.
|
|
3641
3668
|
*/
|
|
@@ -3644,7 +3671,7 @@ declare module ":s2sdk" {
|
|
|
3644
3671
|
/**
|
|
3645
3672
|
* @description Checks if the provided entity handle is valid.
|
|
3646
3673
|
*
|
|
3647
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3674
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsValidEntHandle|Docs}
|
|
3648
3675
|
*
|
|
3649
3676
|
* @param entityHandle The entity handle to check.
|
|
3650
3677
|
*/
|
|
@@ -3653,7 +3680,7 @@ declare module ":s2sdk" {
|
|
|
3653
3680
|
/**
|
|
3654
3681
|
* @description Checks if the provided entity pointer is valid.
|
|
3655
3682
|
*
|
|
3656
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3683
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsValidEntPointer|Docs}
|
|
3657
3684
|
*
|
|
3658
3685
|
* @param entity The entity pointer to check.
|
|
3659
3686
|
*/
|
|
@@ -3662,7 +3689,7 @@ declare module ":s2sdk" {
|
|
|
3662
3689
|
/**
|
|
3663
3690
|
* @description Retrieves the pointer to the first active entity.
|
|
3664
3691
|
*
|
|
3665
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3692
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetFirstActiveEntity|Docs}
|
|
3666
3693
|
*
|
|
3667
3694
|
*
|
|
3668
3695
|
*/
|
|
@@ -3671,7 +3698,7 @@ declare module ":s2sdk" {
|
|
|
3671
3698
|
/**
|
|
3672
3699
|
* @description Retrieves a pointer to the concrete entity list.
|
|
3673
3700
|
*
|
|
3674
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3701
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetConcreteEntityListPointer|Docs}
|
|
3675
3702
|
*
|
|
3676
3703
|
*
|
|
3677
3704
|
*/
|
|
@@ -3680,7 +3707,7 @@ declare module ":s2sdk" {
|
|
|
3680
3707
|
/**
|
|
3681
3708
|
* @description Adds an entity output hook on a specified entity class name.
|
|
3682
3709
|
*
|
|
3683
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3710
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-HookEntityOutput|Docs}
|
|
3684
3711
|
*
|
|
3685
3712
|
* @param szClassname The class name of the entity to hook the output for.
|
|
3686
3713
|
* @param szOutput The output event name to hook.
|
|
@@ -3692,7 +3719,7 @@ declare module ":s2sdk" {
|
|
|
3692
3719
|
/**
|
|
3693
3720
|
* @description Removes an entity output hook.
|
|
3694
3721
|
*
|
|
3695
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3722
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UnhookEntityOutput|Docs}
|
|
3696
3723
|
*
|
|
3697
3724
|
* @param szClassname The class name of the entity from which to unhook the output.
|
|
3698
3725
|
* @param szOutput The output event name to unhook.
|
|
@@ -3704,7 +3731,7 @@ declare module ":s2sdk" {
|
|
|
3704
3731
|
/**
|
|
3705
3732
|
* @description Searches for an entity by classname.
|
|
3706
3733
|
*
|
|
3707
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3734
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-FindEntityByClassname|Docs}
|
|
3708
3735
|
*
|
|
3709
3736
|
* @param startEntity The entity handle from which to start the search.
|
|
3710
3737
|
* @param classname The class name of the entity to search for.
|
|
@@ -3714,7 +3741,7 @@ declare module ":s2sdk" {
|
|
|
3714
3741
|
/**
|
|
3715
3742
|
* @description Searches for an entity by name.
|
|
3716
3743
|
*
|
|
3717
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3744
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-FindEntityByName|Docs}
|
|
3718
3745
|
*
|
|
3719
3746
|
* @param startEntity The entity handle from which to start the search.
|
|
3720
3747
|
* @param name The name of the entity to search for.
|
|
@@ -3724,7 +3751,7 @@ declare module ":s2sdk" {
|
|
|
3724
3751
|
/**
|
|
3725
3752
|
* @description Creates an entity by string name but does not spawn it.
|
|
3726
3753
|
*
|
|
3727
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3754
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateEntityByName|Docs}
|
|
3728
3755
|
*
|
|
3729
3756
|
* @param className The class name of the entity to create.
|
|
3730
3757
|
*/
|
|
@@ -3733,7 +3760,7 @@ declare module ":s2sdk" {
|
|
|
3733
3760
|
/**
|
|
3734
3761
|
* @description Spawns an entity into the game.
|
|
3735
3762
|
*
|
|
3736
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3763
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-DispatchSpawn|Docs}
|
|
3737
3764
|
*
|
|
3738
3765
|
* @param entityHandle The handle of the entity to spawn.
|
|
3739
3766
|
*/
|
|
@@ -3742,7 +3769,7 @@ declare module ":s2sdk" {
|
|
|
3742
3769
|
/**
|
|
3743
3770
|
* @description Spawns an entity into the game with key-value properties.
|
|
3744
3771
|
*
|
|
3745
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3772
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-DispatchSpawn2|Docs}
|
|
3746
3773
|
*
|
|
3747
3774
|
* @param entityHandle The handle of the entity to spawn.
|
|
3748
3775
|
* @param keys A vector of keys representing the property names to set on the entity.
|
|
@@ -3753,7 +3780,7 @@ declare module ":s2sdk" {
|
|
|
3753
3780
|
/**
|
|
3754
3781
|
* @description Marks an entity for deletion.
|
|
3755
3782
|
*
|
|
3756
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3783
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-RemoveEntity|Docs}
|
|
3757
3784
|
*
|
|
3758
3785
|
* @param entityHandle The handle of the entity to be deleted.
|
|
3759
3786
|
*/
|
|
@@ -3762,7 +3789,7 @@ declare module ":s2sdk" {
|
|
|
3762
3789
|
/**
|
|
3763
3790
|
* @description Retrieves the class name of an entity.
|
|
3764
3791
|
*
|
|
3765
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3792
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityClassname|Docs}
|
|
3766
3793
|
*
|
|
3767
3794
|
* @param entityHandle The handle of the entity whose class name is to be retrieved.
|
|
3768
3795
|
*/
|
|
@@ -3771,7 +3798,7 @@ declare module ":s2sdk" {
|
|
|
3771
3798
|
/**
|
|
3772
3799
|
* @description Retrieves the name of an entity.
|
|
3773
3800
|
*
|
|
3774
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3801
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityName|Docs}
|
|
3775
3802
|
*
|
|
3776
3803
|
* @param entityHandle The handle of the entity whose name is to be retrieved.
|
|
3777
3804
|
*/
|
|
@@ -3780,7 +3807,7 @@ declare module ":s2sdk" {
|
|
|
3780
3807
|
/**
|
|
3781
3808
|
* @description Sets the name of an entity.
|
|
3782
3809
|
*
|
|
3783
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3810
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityName|Docs}
|
|
3784
3811
|
*
|
|
3785
3812
|
* @param entityHandle The handle of the entity whose name is to be set.
|
|
3786
3813
|
* @param name The new name to set for the entity.
|
|
@@ -3790,7 +3817,7 @@ declare module ":s2sdk" {
|
|
|
3790
3817
|
/**
|
|
3791
3818
|
* @description Retrieves the movement type of an entity.
|
|
3792
3819
|
*
|
|
3793
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3820
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityMoveType|Docs}
|
|
3794
3821
|
*
|
|
3795
3822
|
* @param entityHandle The handle of the entity whose movement type is to be retrieved.
|
|
3796
3823
|
*/
|
|
@@ -3799,7 +3826,7 @@ declare module ":s2sdk" {
|
|
|
3799
3826
|
/**
|
|
3800
3827
|
* @description Sets the movement type of an entity.
|
|
3801
3828
|
*
|
|
3802
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3829
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityMoveType|Docs}
|
|
3803
3830
|
*
|
|
3804
3831
|
* @param entityHandle The handle of the entity whose movement type is to be set.
|
|
3805
3832
|
* @param moveType The new movement type to set for the entity.
|
|
@@ -3809,7 +3836,7 @@ declare module ":s2sdk" {
|
|
|
3809
3836
|
/**
|
|
3810
3837
|
* @description Retrieves the gravity scale of an entity.
|
|
3811
3838
|
*
|
|
3812
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3839
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityGravity|Docs}
|
|
3813
3840
|
*
|
|
3814
3841
|
* @param entityHandle The handle of the entity whose gravity scale is to be retrieved.
|
|
3815
3842
|
*/
|
|
@@ -3818,7 +3845,7 @@ declare module ":s2sdk" {
|
|
|
3818
3845
|
/**
|
|
3819
3846
|
* @description Sets the gravity scale of an entity.
|
|
3820
3847
|
*
|
|
3821
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3848
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityGravity|Docs}
|
|
3822
3849
|
*
|
|
3823
3850
|
* @param entityHandle The handle of the entity whose gravity scale is to be set.
|
|
3824
3851
|
* @param gravity The new gravity scale to set for the entity.
|
|
@@ -3828,7 +3855,7 @@ declare module ":s2sdk" {
|
|
|
3828
3855
|
/**
|
|
3829
3856
|
* @description Retrieves the flags of an entity.
|
|
3830
3857
|
*
|
|
3831
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3858
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityFlags|Docs}
|
|
3832
3859
|
*
|
|
3833
3860
|
* @param entityHandle The handle of the entity whose flags are to be retrieved.
|
|
3834
3861
|
*/
|
|
@@ -3837,7 +3864,7 @@ declare module ":s2sdk" {
|
|
|
3837
3864
|
/**
|
|
3838
3865
|
* @description Sets the flags of an entity.
|
|
3839
3866
|
*
|
|
3840
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3867
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityFlags|Docs}
|
|
3841
3868
|
*
|
|
3842
3869
|
* @param entityHandle The handle of the entity whose flags are to be set.
|
|
3843
3870
|
* @param flags The new flags to set for the entity.
|
|
@@ -3847,7 +3874,7 @@ declare module ":s2sdk" {
|
|
|
3847
3874
|
/**
|
|
3848
3875
|
* @description Retrieves the render color of an entity.
|
|
3849
3876
|
*
|
|
3850
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3877
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityRenderColor|Docs}
|
|
3851
3878
|
*
|
|
3852
3879
|
* @param entityHandle The handle of the entity whose render color is to be retrieved.
|
|
3853
3880
|
*/
|
|
@@ -3856,7 +3883,7 @@ declare module ":s2sdk" {
|
|
|
3856
3883
|
/**
|
|
3857
3884
|
* @description Sets the render color of an entity.
|
|
3858
3885
|
*
|
|
3859
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3886
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityRenderColor|Docs}
|
|
3860
3887
|
*
|
|
3861
3888
|
* @param entityHandle The handle of the entity whose render color is to be set.
|
|
3862
3889
|
* @param color The new raw color value to set for the entity's render color.
|
|
@@ -3866,7 +3893,7 @@ declare module ":s2sdk" {
|
|
|
3866
3893
|
/**
|
|
3867
3894
|
* @description Retrieves the render mode of an entity.
|
|
3868
3895
|
*
|
|
3869
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3896
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityRenderMode|Docs}
|
|
3870
3897
|
*
|
|
3871
3898
|
* @param entityHandle The handle of the entity whose render mode is to be retrieved.
|
|
3872
3899
|
*/
|
|
@@ -3875,7 +3902,7 @@ declare module ":s2sdk" {
|
|
|
3875
3902
|
/**
|
|
3876
3903
|
* @description Sets the render mode of an entity.
|
|
3877
3904
|
*
|
|
3878
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3905
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityRenderMode|Docs}
|
|
3879
3906
|
*
|
|
3880
3907
|
* @param entityHandle The handle of the entity whose render mode is to be set.
|
|
3881
3908
|
* @param renderMode The new render mode to set for the entity.
|
|
@@ -3885,7 +3912,7 @@ declare module ":s2sdk" {
|
|
|
3885
3912
|
/**
|
|
3886
3913
|
* @description Retrieves the health of an entity.
|
|
3887
3914
|
*
|
|
3888
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3915
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityHealth|Docs}
|
|
3889
3916
|
*
|
|
3890
3917
|
* @param entityHandle The handle of the entity whose health is to be retrieved.
|
|
3891
3918
|
*/
|
|
@@ -3894,7 +3921,7 @@ declare module ":s2sdk" {
|
|
|
3894
3921
|
/**
|
|
3895
3922
|
* @description Sets the health of an entity.
|
|
3896
3923
|
*
|
|
3897
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3924
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityHealth|Docs}
|
|
3898
3925
|
*
|
|
3899
3926
|
* @param entityHandle The handle of the entity whose health is to be set.
|
|
3900
3927
|
* @param health The new health value to set for the entity.
|
|
@@ -3904,7 +3931,7 @@ declare module ":s2sdk" {
|
|
|
3904
3931
|
/**
|
|
3905
3932
|
* @description Retrieves the team number of an entity.
|
|
3906
3933
|
*
|
|
3907
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3934
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetTeamEntity|Docs}
|
|
3908
3935
|
*
|
|
3909
3936
|
* @param entityHandle The handle of the entity whose team number is to be retrieved.
|
|
3910
3937
|
*/
|
|
@@ -3913,7 +3940,7 @@ declare module ":s2sdk" {
|
|
|
3913
3940
|
/**
|
|
3914
3941
|
* @description Sets the team number of an entity.
|
|
3915
3942
|
*
|
|
3916
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3943
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetTeamEntity|Docs}
|
|
3917
3944
|
*
|
|
3918
3945
|
* @param entityHandle The handle of the entity whose team number is to be set.
|
|
3919
3946
|
* @param team The new team number to set for the entity.
|
|
@@ -3923,7 +3950,7 @@ declare module ":s2sdk" {
|
|
|
3923
3950
|
/**
|
|
3924
3951
|
* @description Retrieves the owner of an entity.
|
|
3925
3952
|
*
|
|
3926
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3953
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityOwner|Docs}
|
|
3927
3954
|
*
|
|
3928
3955
|
* @param entityHandle The handle of the entity whose owner is to be retrieved.
|
|
3929
3956
|
*/
|
|
@@ -3932,7 +3959,7 @@ declare module ":s2sdk" {
|
|
|
3932
3959
|
/**
|
|
3933
3960
|
* @description Sets the owner of an entity.
|
|
3934
3961
|
*
|
|
3935
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3962
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityOwner|Docs}
|
|
3936
3963
|
*
|
|
3937
3964
|
* @param entityHandle The handle of the entity whose owner is to be set.
|
|
3938
3965
|
* @param ownerHandle The handle of the new owner entity.
|
|
@@ -3942,7 +3969,7 @@ declare module ":s2sdk" {
|
|
|
3942
3969
|
/**
|
|
3943
3970
|
* @description Retrieves the parent of an entity.
|
|
3944
3971
|
*
|
|
3945
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3972
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityParent|Docs}
|
|
3946
3973
|
*
|
|
3947
3974
|
* @param entityHandle The handle of the entity whose parent is to be retrieved.
|
|
3948
3975
|
*/
|
|
@@ -3951,7 +3978,7 @@ declare module ":s2sdk" {
|
|
|
3951
3978
|
/**
|
|
3952
3979
|
* @description Sets the parent of an entity.
|
|
3953
3980
|
*
|
|
3954
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3981
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityParent|Docs}
|
|
3955
3982
|
*
|
|
3956
3983
|
* @param entityHandle The handle of the entity whose parent is to be set.
|
|
3957
3984
|
* @param parentHandle The handle of the new parent entity.
|
|
@@ -3961,7 +3988,7 @@ declare module ":s2sdk" {
|
|
|
3961
3988
|
/**
|
|
3962
3989
|
* @description Retrieves the absolute origin of an entity.
|
|
3963
3990
|
*
|
|
3964
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
3991
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityAbsOrigin|Docs}
|
|
3965
3992
|
*
|
|
3966
3993
|
* @param entityHandle The handle of the entity whose absolute origin is to be retrieved.
|
|
3967
3994
|
*/
|
|
@@ -3970,7 +3997,7 @@ declare module ":s2sdk" {
|
|
|
3970
3997
|
/**
|
|
3971
3998
|
* @description Sets the absolute origin of an entity.
|
|
3972
3999
|
*
|
|
3973
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4000
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityAbsOrigin|Docs}
|
|
3974
4001
|
*
|
|
3975
4002
|
* @param entityHandle The handle of the entity whose absolute origin is to be set.
|
|
3976
4003
|
* @param origin The new absolute origin to set for the entity.
|
|
@@ -3980,7 +4007,7 @@ declare module ":s2sdk" {
|
|
|
3980
4007
|
/**
|
|
3981
4008
|
* @description Retrieves the angular rotation of an entity.
|
|
3982
4009
|
*
|
|
3983
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4010
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityAngRotation|Docs}
|
|
3984
4011
|
*
|
|
3985
4012
|
* @param entityHandle The handle of the entity whose angular rotation is to be retrieved.
|
|
3986
4013
|
*/
|
|
@@ -3989,7 +4016,7 @@ declare module ":s2sdk" {
|
|
|
3989
4016
|
/**
|
|
3990
4017
|
* @description Sets the angular rotation of an entity.
|
|
3991
4018
|
*
|
|
3992
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4019
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityAngRotation|Docs}
|
|
3993
4020
|
*
|
|
3994
4021
|
* @param entityHandle The handle of the entity whose angular rotation is to be set.
|
|
3995
4022
|
* @param angle The new angular rotation to set for the entity.
|
|
@@ -3999,7 +4026,7 @@ declare module ":s2sdk" {
|
|
|
3999
4026
|
/**
|
|
4000
4027
|
* @description Retrieves the absolute velocity of an entity.
|
|
4001
4028
|
*
|
|
4002
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4029
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityAbsVelocity|Docs}
|
|
4003
4030
|
*
|
|
4004
4031
|
* @param entityHandle The handle of the entity whose absolute velocity is to be retrieved.
|
|
4005
4032
|
*/
|
|
@@ -4008,7 +4035,7 @@ declare module ":s2sdk" {
|
|
|
4008
4035
|
/**
|
|
4009
4036
|
* @description Sets the absolute velocity of an entity.
|
|
4010
4037
|
*
|
|
4011
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4038
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityAbsVelocity|Docs}
|
|
4012
4039
|
*
|
|
4013
4040
|
* @param entityHandle The handle of the entity whose absolute velocity is to be set.
|
|
4014
4041
|
* @param velocity The new absolute velocity to set for the entity.
|
|
@@ -4018,7 +4045,7 @@ declare module ":s2sdk" {
|
|
|
4018
4045
|
/**
|
|
4019
4046
|
* @description Retrieves the model name of an entity.
|
|
4020
4047
|
*
|
|
4021
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4048
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityModel|Docs}
|
|
4022
4049
|
*
|
|
4023
4050
|
* @param entityHandle The handle of the entity whose model name is to be retrieved.
|
|
4024
4051
|
*/
|
|
@@ -4027,7 +4054,7 @@ declare module ":s2sdk" {
|
|
|
4027
4054
|
/**
|
|
4028
4055
|
* @description Sets the model name of an entity.
|
|
4029
4056
|
*
|
|
4030
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4057
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntityModel|Docs}
|
|
4031
4058
|
*
|
|
4032
4059
|
* @param entityHandle The handle of the entity whose model name is to be set.
|
|
4033
4060
|
* @param model The new model name to set for the entity.
|
|
@@ -4037,7 +4064,7 @@ declare module ":s2sdk" {
|
|
|
4037
4064
|
/**
|
|
4038
4065
|
* @description Retrieves the water level of an entity.
|
|
4039
4066
|
*
|
|
4040
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4067
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityWaterLevel|Docs}
|
|
4041
4068
|
*
|
|
4042
4069
|
* @param entityHandle The handle of the entity whose water level is to be retrieved.
|
|
4043
4070
|
*/
|
|
@@ -4046,7 +4073,7 @@ declare module ":s2sdk" {
|
|
|
4046
4073
|
/**
|
|
4047
4074
|
* @description Retrieves the ground entity of an entity.
|
|
4048
4075
|
*
|
|
4049
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4076
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityGroundEntity|Docs}
|
|
4050
4077
|
*
|
|
4051
4078
|
* @param entityHandle The handle of the entity whose ground entity is to be retrieved.
|
|
4052
4079
|
*/
|
|
@@ -4055,7 +4082,7 @@ declare module ":s2sdk" {
|
|
|
4055
4082
|
/**
|
|
4056
4083
|
* @description Retrieves the effects of an entity.
|
|
4057
4084
|
*
|
|
4058
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4085
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntityEffects|Docs}
|
|
4059
4086
|
*
|
|
4060
4087
|
* @param entityHandle The handle of the entity whose effects are to be retrieved.
|
|
4061
4088
|
*/
|
|
@@ -4064,7 +4091,7 @@ declare module ":s2sdk" {
|
|
|
4064
4091
|
/**
|
|
4065
4092
|
* @description Teleports an entity to a specified location and orientation.
|
|
4066
4093
|
*
|
|
4067
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4094
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-TeleportEntity|Docs}
|
|
4068
4095
|
*
|
|
4069
4096
|
* @param entityHandle The handle of the entity to teleport.
|
|
4070
4097
|
* @param origin A pointer to a Vector representing the new absolute position. Can be nullptr.
|
|
@@ -4076,7 +4103,7 @@ declare module ":s2sdk" {
|
|
|
4076
4103
|
/**
|
|
4077
4104
|
* @description Invokes a named input method on a specified entity.
|
|
4078
4105
|
*
|
|
4079
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4106
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-AcceptInput|Docs}
|
|
4080
4107
|
*
|
|
4081
4108
|
* @param entityHandle The handle of the target entity that will receive the input.
|
|
4082
4109
|
* @param inputName The name of the input action to invoke.
|
|
@@ -4091,7 +4118,7 @@ declare module ":s2sdk" {
|
|
|
4091
4118
|
/**
|
|
4092
4119
|
* @description Creates a hook for when a game event is fired.
|
|
4093
4120
|
*
|
|
4094
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4121
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-HookEvent|Docs}
|
|
4095
4122
|
*
|
|
4096
4123
|
* @param name The name of the event to hook.
|
|
4097
4124
|
* @param callback The callback function to call when the event is fired.
|
|
@@ -4102,7 +4129,7 @@ declare module ":s2sdk" {
|
|
|
4102
4129
|
/**
|
|
4103
4130
|
* @description Removes a hook for when a game event is fired.
|
|
4104
4131
|
*
|
|
4105
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4132
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UnhookEvent|Docs}
|
|
4106
4133
|
*
|
|
4107
4134
|
* @param name The name of the event to unhook.
|
|
4108
4135
|
* @param callback The callback function to remove.
|
|
@@ -4113,7 +4140,7 @@ declare module ":s2sdk" {
|
|
|
4113
4140
|
/**
|
|
4114
4141
|
* @description Creates a game event to be fired later.
|
|
4115
4142
|
*
|
|
4116
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4143
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateEvent|Docs}
|
|
4117
4144
|
*
|
|
4118
4145
|
* @param name The name of the event to create.
|
|
4119
4146
|
* @param force A boolean indicating whether to force the creation of the event.
|
|
@@ -4123,7 +4150,7 @@ declare module ":s2sdk" {
|
|
|
4123
4150
|
/**
|
|
4124
4151
|
* @description Fires a game event.
|
|
4125
4152
|
*
|
|
4126
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4153
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-FireEvent|Docs}
|
|
4127
4154
|
*
|
|
4128
4155
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4129
4156
|
* @param dontBroadcast A boolean indicating whether to broadcast the event.
|
|
@@ -4133,7 +4160,7 @@ declare module ":s2sdk" {
|
|
|
4133
4160
|
/**
|
|
4134
4161
|
* @description Fires a game event to a specific client.
|
|
4135
4162
|
*
|
|
4136
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4163
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-FireEventToClient|Docs}
|
|
4137
4164
|
*
|
|
4138
4165
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4139
4166
|
* @param playerSlot The index of the client to fire the event to.
|
|
@@ -4143,7 +4170,7 @@ declare module ":s2sdk" {
|
|
|
4143
4170
|
/**
|
|
4144
4171
|
* @description Cancels a previously created game event that has not been fired.
|
|
4145
4172
|
*
|
|
4146
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4173
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CancelCreatedEvent|Docs}
|
|
4147
4174
|
*
|
|
4148
4175
|
* @param info A pointer to the EventInfo structure of the event to cancel.
|
|
4149
4176
|
*/
|
|
@@ -4152,7 +4179,7 @@ declare module ":s2sdk" {
|
|
|
4152
4179
|
/**
|
|
4153
4180
|
* @description Retrieves the boolean value of a game event's key.
|
|
4154
4181
|
*
|
|
4155
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4182
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventBool|Docs}
|
|
4156
4183
|
*
|
|
4157
4184
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4158
4185
|
* @param key The key for which to retrieve the boolean value.
|
|
@@ -4162,7 +4189,7 @@ declare module ":s2sdk" {
|
|
|
4162
4189
|
/**
|
|
4163
4190
|
* @description Retrieves the float value of a game event's key.
|
|
4164
4191
|
*
|
|
4165
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4192
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventFloat|Docs}
|
|
4166
4193
|
*
|
|
4167
4194
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4168
4195
|
* @param key The key for which to retrieve the float value.
|
|
@@ -4172,7 +4199,7 @@ declare module ":s2sdk" {
|
|
|
4172
4199
|
/**
|
|
4173
4200
|
* @description Retrieves the integer value of a game event's key.
|
|
4174
4201
|
*
|
|
4175
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4202
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventInt|Docs}
|
|
4176
4203
|
*
|
|
4177
4204
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4178
4205
|
* @param key The key for which to retrieve the integer value.
|
|
@@ -4182,7 +4209,7 @@ declare module ":s2sdk" {
|
|
|
4182
4209
|
/**
|
|
4183
4210
|
* @description Retrieves the long integer value of a game event's key.
|
|
4184
4211
|
*
|
|
4185
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4212
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventUInt64|Docs}
|
|
4186
4213
|
*
|
|
4187
4214
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4188
4215
|
* @param key The key for which to retrieve the long integer value.
|
|
@@ -4192,7 +4219,7 @@ declare module ":s2sdk" {
|
|
|
4192
4219
|
/**
|
|
4193
4220
|
* @description Retrieves the string value of a game event's key.
|
|
4194
4221
|
*
|
|
4195
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4222
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventString|Docs}
|
|
4196
4223
|
*
|
|
4197
4224
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4198
4225
|
* @param key The key for which to retrieve the string value.
|
|
@@ -4202,7 +4229,7 @@ declare module ":s2sdk" {
|
|
|
4202
4229
|
/**
|
|
4203
4230
|
* @description Retrieves the pointer value of a game event's key.
|
|
4204
4231
|
*
|
|
4205
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4232
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventPtr|Docs}
|
|
4206
4233
|
*
|
|
4207
4234
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4208
4235
|
* @param key The key for which to retrieve the pointer value.
|
|
@@ -4212,7 +4239,7 @@ declare module ":s2sdk" {
|
|
|
4212
4239
|
/**
|
|
4213
4240
|
* @description Retrieves the player controller address of a game event's key.
|
|
4214
4241
|
*
|
|
4215
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4242
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventPlayerController|Docs}
|
|
4216
4243
|
*
|
|
4217
4244
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4218
4245
|
* @param key The key for which to retrieve the player controller address.
|
|
@@ -4222,7 +4249,7 @@ declare module ":s2sdk" {
|
|
|
4222
4249
|
/**
|
|
4223
4250
|
* @description Retrieves the player index of a game event's key.
|
|
4224
4251
|
*
|
|
4225
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4252
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventPlayerIndex|Docs}
|
|
4226
4253
|
*
|
|
4227
4254
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4228
4255
|
* @param key The key for which to retrieve the player index.
|
|
@@ -4232,7 +4259,7 @@ declare module ":s2sdk" {
|
|
|
4232
4259
|
/**
|
|
4233
4260
|
* @description Retrieves the player pawn address of a game event's key.
|
|
4234
4261
|
*
|
|
4235
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4262
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventPlayerPawn|Docs}
|
|
4236
4263
|
*
|
|
4237
4264
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4238
4265
|
* @param key The key for which to retrieve the player pawn address.
|
|
@@ -4242,7 +4269,7 @@ declare module ":s2sdk" {
|
|
|
4242
4269
|
/**
|
|
4243
4270
|
* @description Retrieves the entity address of a game event's key.
|
|
4244
4271
|
*
|
|
4245
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4272
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventEntity|Docs}
|
|
4246
4273
|
*
|
|
4247
4274
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4248
4275
|
* @param key The key for which to retrieve the entity address.
|
|
@@ -4252,7 +4279,7 @@ declare module ":s2sdk" {
|
|
|
4252
4279
|
/**
|
|
4253
4280
|
* @description Retrieves the entity index of a game event's key.
|
|
4254
4281
|
*
|
|
4255
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4282
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventEntityIndex|Docs}
|
|
4256
4283
|
*
|
|
4257
4284
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4258
4285
|
* @param key The key for which to retrieve the entity index.
|
|
@@ -4262,7 +4289,7 @@ declare module ":s2sdk" {
|
|
|
4262
4289
|
/**
|
|
4263
4290
|
* @description Retrieves the entity handle of a game event's key.
|
|
4264
4291
|
*
|
|
4265
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4292
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventEntityHandle|Docs}
|
|
4266
4293
|
*
|
|
4267
4294
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4268
4295
|
* @param key The key for which to retrieve the entity handle.
|
|
@@ -4272,7 +4299,7 @@ declare module ":s2sdk" {
|
|
|
4272
4299
|
/**
|
|
4273
4300
|
* @description Retrieves the name of a game event.
|
|
4274
4301
|
*
|
|
4275
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4302
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEventName|Docs}
|
|
4276
4303
|
*
|
|
4277
4304
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4278
4305
|
*/
|
|
@@ -4281,7 +4308,7 @@ declare module ":s2sdk" {
|
|
|
4281
4308
|
/**
|
|
4282
4309
|
* @description Sets the boolean value of a game event's key.
|
|
4283
4310
|
*
|
|
4284
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4311
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventBool|Docs}
|
|
4285
4312
|
*
|
|
4286
4313
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4287
4314
|
* @param key The key for which to set the boolean value.
|
|
@@ -4292,7 +4319,7 @@ declare module ":s2sdk" {
|
|
|
4292
4319
|
/**
|
|
4293
4320
|
* @description Sets the floating point value of a game event's key.
|
|
4294
4321
|
*
|
|
4295
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4322
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventFloat|Docs}
|
|
4296
4323
|
*
|
|
4297
4324
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4298
4325
|
* @param key The key for which to set the float value.
|
|
@@ -4303,7 +4330,7 @@ declare module ":s2sdk" {
|
|
|
4303
4330
|
/**
|
|
4304
4331
|
* @description Sets the integer value of a game event's key.
|
|
4305
4332
|
*
|
|
4306
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4333
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventInt|Docs}
|
|
4307
4334
|
*
|
|
4308
4335
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4309
4336
|
* @param key The key for which to set the integer value.
|
|
@@ -4314,7 +4341,7 @@ declare module ":s2sdk" {
|
|
|
4314
4341
|
/**
|
|
4315
4342
|
* @description Sets the long integer value of a game event's key.
|
|
4316
4343
|
*
|
|
4317
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4344
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventUInt64|Docs}
|
|
4318
4345
|
*
|
|
4319
4346
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4320
4347
|
* @param key The key for which to set the long integer value.
|
|
@@ -4325,7 +4352,7 @@ declare module ":s2sdk" {
|
|
|
4325
4352
|
/**
|
|
4326
4353
|
* @description Sets the string value of a game event's key.
|
|
4327
4354
|
*
|
|
4328
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4355
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventString|Docs}
|
|
4329
4356
|
*
|
|
4330
4357
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4331
4358
|
* @param key The key for which to set the string value.
|
|
@@ -4336,7 +4363,7 @@ declare module ":s2sdk" {
|
|
|
4336
4363
|
/**
|
|
4337
4364
|
* @description Sets the pointer value of a game event's key.
|
|
4338
4365
|
*
|
|
4339
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4366
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventPtr|Docs}
|
|
4340
4367
|
*
|
|
4341
4368
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4342
4369
|
* @param key The key for which to set the pointer value.
|
|
@@ -4347,7 +4374,7 @@ declare module ":s2sdk" {
|
|
|
4347
4374
|
/**
|
|
4348
4375
|
* @description Sets the player controller address of a game event's key.
|
|
4349
4376
|
*
|
|
4350
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4377
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventPlayerController|Docs}
|
|
4351
4378
|
*
|
|
4352
4379
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4353
4380
|
* @param key The key for which to set the player controller address.
|
|
@@ -4358,7 +4385,7 @@ declare module ":s2sdk" {
|
|
|
4358
4385
|
/**
|
|
4359
4386
|
* @description Sets the player index value of a game event's key.
|
|
4360
4387
|
*
|
|
4361
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4388
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventPlayerIndex|Docs}
|
|
4362
4389
|
*
|
|
4363
4390
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4364
4391
|
* @param key The key for which to set the player index value.
|
|
@@ -4369,7 +4396,7 @@ declare module ":s2sdk" {
|
|
|
4369
4396
|
/**
|
|
4370
4397
|
* @description Sets the entity address of a game event's key.
|
|
4371
4398
|
*
|
|
4372
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4399
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventEntity|Docs}
|
|
4373
4400
|
*
|
|
4374
4401
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4375
4402
|
* @param key The key for which to set the entity address.
|
|
@@ -4380,7 +4407,7 @@ declare module ":s2sdk" {
|
|
|
4380
4407
|
/**
|
|
4381
4408
|
* @description Sets the entity index of a game event's key.
|
|
4382
4409
|
*
|
|
4383
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4410
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventEntityIndex|Docs}
|
|
4384
4411
|
*
|
|
4385
4412
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4386
4413
|
* @param key The key for which to set the entity index.
|
|
@@ -4391,7 +4418,7 @@ declare module ":s2sdk" {
|
|
|
4391
4418
|
/**
|
|
4392
4419
|
* @description Sets the entity handle of a game event's key.
|
|
4393
4420
|
*
|
|
4394
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4421
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventEntityHandle|Docs}
|
|
4395
4422
|
*
|
|
4396
4423
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4397
4424
|
* @param key The key for which to set the entity handle.
|
|
@@ -4402,7 +4429,7 @@ declare module ":s2sdk" {
|
|
|
4402
4429
|
/**
|
|
4403
4430
|
* @description Sets whether an event's broadcasting will be disabled or not.
|
|
4404
4431
|
*
|
|
4405
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4432
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEventBroadcast|Docs}
|
|
4406
4433
|
*
|
|
4407
4434
|
* @param info A pointer to the EventInfo structure containing event data.
|
|
4408
4435
|
* @param dontBroadcast A boolean indicating whether to disable broadcasting.
|
|
@@ -4412,7 +4439,7 @@ declare module ":s2sdk" {
|
|
|
4412
4439
|
/**
|
|
4413
4440
|
* @description Load game event descriptions from a file (e.g., "resource/gameevents.res").
|
|
4414
4441
|
*
|
|
4415
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4442
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-LoadEventsFromFile|Docs}
|
|
4416
4443
|
*
|
|
4417
4444
|
* @param path The path to the file containing event descriptions.
|
|
4418
4445
|
* @param searchAll A boolean indicating whether to search all paths for the file.
|
|
@@ -4422,7 +4449,7 @@ declare module ":s2sdk" {
|
|
|
4422
4449
|
/**
|
|
4423
4450
|
* @description Closes a game configuration file.
|
|
4424
4451
|
*
|
|
4425
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4452
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CloseGameConfigFile|Docs}
|
|
4426
4453
|
*
|
|
4427
4454
|
* @param id An id to the game configuration to be closed.
|
|
4428
4455
|
*/
|
|
@@ -4431,7 +4458,7 @@ declare module ":s2sdk" {
|
|
|
4431
4458
|
/**
|
|
4432
4459
|
* @description Loads a game configuration file.
|
|
4433
4460
|
*
|
|
4434
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4461
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-LoadGameConfigFile|Docs}
|
|
4435
4462
|
*
|
|
4436
4463
|
* @param paths The paths to the game configuration file to be loaded.
|
|
4437
4464
|
*/
|
|
@@ -4440,7 +4467,7 @@ declare module ":s2sdk" {
|
|
|
4440
4467
|
/**
|
|
4441
4468
|
* @description Retrieves the paths of a game configuration.
|
|
4442
4469
|
*
|
|
4443
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4470
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameConfigPaths|Docs}
|
|
4444
4471
|
*
|
|
4445
4472
|
* @param id An id to the game configuration whose path is to be retrieved.
|
|
4446
4473
|
*/
|
|
@@ -4449,7 +4476,7 @@ declare module ":s2sdk" {
|
|
|
4449
4476
|
/**
|
|
4450
4477
|
* @description Retrieves a library associated with the game configuration.
|
|
4451
4478
|
*
|
|
4452
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4479
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameConfigLibrary|Docs}
|
|
4453
4480
|
*
|
|
4454
4481
|
* @param id An id to the game configuration from which to retrieve the library.
|
|
4455
4482
|
* @param name The name of the library to be retrieved.
|
|
@@ -4459,7 +4486,7 @@ declare module ":s2sdk" {
|
|
|
4459
4486
|
/**
|
|
4460
4487
|
* @description Retrieves the signature associated with the game configuration.
|
|
4461
4488
|
*
|
|
4462
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4489
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameConfigSignature|Docs}
|
|
4463
4490
|
*
|
|
4464
4491
|
* @param id An id to the game configuration from which to retrieve the signature.
|
|
4465
4492
|
* @param name The name of the signature to be retrieved.
|
|
@@ -4469,7 +4496,7 @@ declare module ":s2sdk" {
|
|
|
4469
4496
|
/**
|
|
4470
4497
|
* @description Retrieves a symbol associated with the game configuration.
|
|
4471
4498
|
*
|
|
4472
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4499
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameConfigSymbol|Docs}
|
|
4473
4500
|
*
|
|
4474
4501
|
* @param id An id to the game configuration from which to retrieve the symbol.
|
|
4475
4502
|
* @param name The name of the symbol to be retrieved.
|
|
@@ -4479,7 +4506,7 @@ declare module ":s2sdk" {
|
|
|
4479
4506
|
/**
|
|
4480
4507
|
* @description Retrieves a patch associated with the game configuration.
|
|
4481
4508
|
*
|
|
4482
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4509
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameConfigPatch|Docs}
|
|
4483
4510
|
*
|
|
4484
4511
|
* @param id An id to the game configuration from which to retrieve the patch.
|
|
4485
4512
|
* @param name The name of the patch to be retrieved.
|
|
@@ -4489,7 +4516,7 @@ declare module ":s2sdk" {
|
|
|
4489
4516
|
/**
|
|
4490
4517
|
* @description Retrieves the offset associated with a name from the game configuration.
|
|
4491
4518
|
*
|
|
4492
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4519
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameConfigOffset|Docs}
|
|
4493
4520
|
*
|
|
4494
4521
|
* @param id An id to the game configuration from which to retrieve the offset.
|
|
4495
4522
|
* @param name The name whose offset is to be retrieved.
|
|
@@ -4499,7 +4526,7 @@ declare module ":s2sdk" {
|
|
|
4499
4526
|
/**
|
|
4500
4527
|
* @description Retrieves the address associated with a name from the game configuration.
|
|
4501
4528
|
*
|
|
4502
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4529
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameConfigAddress|Docs}
|
|
4503
4530
|
*
|
|
4504
4531
|
* @param id An id to the game configuration from which to retrieve the address.
|
|
4505
4532
|
* @param name The name whose address is to be retrieved.
|
|
@@ -4509,7 +4536,7 @@ declare module ":s2sdk" {
|
|
|
4509
4536
|
/**
|
|
4510
4537
|
* @description Retrieves the memory signature associated with a name from the game configuration.
|
|
4511
4538
|
*
|
|
4512
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4539
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameConfigMemSig|Docs}
|
|
4513
4540
|
*
|
|
4514
4541
|
* @param id An id to the game configuration from which to retrieve the memory signature.
|
|
4515
4542
|
* @param name The name whose memory signature is to be resolved and retrieved.
|
|
@@ -4519,7 +4546,7 @@ declare module ":s2sdk" {
|
|
|
4519
4546
|
/**
|
|
4520
4547
|
* @description Registers a new logging channel with specified properties.
|
|
4521
4548
|
*
|
|
4522
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4549
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-RegisterLoggingChannel|Docs}
|
|
4523
4550
|
*
|
|
4524
4551
|
* @param name The name of the logging channel.
|
|
4525
4552
|
* @param iFlags Flags associated with the logging channel.
|
|
@@ -4531,7 +4558,7 @@ declare module ":s2sdk" {
|
|
|
4531
4558
|
/**
|
|
4532
4559
|
* @description Adds a tag to a specified logging channel.
|
|
4533
4560
|
*
|
|
4534
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4561
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-AddLoggerTagToChannel|Docs}
|
|
4535
4562
|
*
|
|
4536
4563
|
* @param channelID The ID of the logging channel to which the tag will be added.
|
|
4537
4564
|
* @param tagName The name of the tag to add to the channel.
|
|
@@ -4541,7 +4568,7 @@ declare module ":s2sdk" {
|
|
|
4541
4568
|
/**
|
|
4542
4569
|
* @description Checks if a specified tag exists in a logging channel.
|
|
4543
4570
|
*
|
|
4544
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4571
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-HasLoggerTag|Docs}
|
|
4545
4572
|
*
|
|
4546
4573
|
* @param channelID The ID of the logging channel.
|
|
4547
4574
|
* @param tag The name of the tag to check for.
|
|
@@ -4551,7 +4578,7 @@ declare module ":s2sdk" {
|
|
|
4551
4578
|
/**
|
|
4552
4579
|
* @description Checks if a logging channel is enabled based on severity.
|
|
4553
4580
|
*
|
|
4554
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4581
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsLoggerChannelEnabledBySeverity|Docs}
|
|
4555
4582
|
*
|
|
4556
4583
|
* @param channelID The ID of the logging channel.
|
|
4557
4584
|
* @param severity The severity of a logging operation.
|
|
@@ -4561,7 +4588,7 @@ declare module ":s2sdk" {
|
|
|
4561
4588
|
/**
|
|
4562
4589
|
* @description Checks if a logging channel is enabled based on verbosity.
|
|
4563
4590
|
*
|
|
4564
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4591
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsLoggerChannelEnabledByVerbosity|Docs}
|
|
4565
4592
|
*
|
|
4566
4593
|
* @param channelID The ID of the logging channel.
|
|
4567
4594
|
* @param verbosity The verbosity level to check.
|
|
@@ -4571,7 +4598,7 @@ declare module ":s2sdk" {
|
|
|
4571
4598
|
/**
|
|
4572
4599
|
* @description Retrieves the verbosity level of a logging channel.
|
|
4573
4600
|
*
|
|
4574
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4601
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetLoggerChannelVerbosity|Docs}
|
|
4575
4602
|
*
|
|
4576
4603
|
* @param channelID The ID of the logging channel.
|
|
4577
4604
|
*/
|
|
@@ -4580,7 +4607,7 @@ declare module ":s2sdk" {
|
|
|
4580
4607
|
/**
|
|
4581
4608
|
* @description Sets the verbosity level of a logging channel.
|
|
4582
4609
|
*
|
|
4583
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4610
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetLoggerChannelVerbosity|Docs}
|
|
4584
4611
|
*
|
|
4585
4612
|
* @param channelID The ID of the logging channel.
|
|
4586
4613
|
* @param verbosity The new verbosity level to set.
|
|
@@ -4590,7 +4617,7 @@ declare module ":s2sdk" {
|
|
|
4590
4617
|
/**
|
|
4591
4618
|
* @description Sets the verbosity level of a logging channel by name.
|
|
4592
4619
|
*
|
|
4593
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4620
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetLoggerChannelVerbosityByName|Docs}
|
|
4594
4621
|
*
|
|
4595
4622
|
* @param channelID The ID of the logging channel.
|
|
4596
4623
|
* @param name The name of the logging channel.
|
|
@@ -4601,7 +4628,7 @@ declare module ":s2sdk" {
|
|
|
4601
4628
|
/**
|
|
4602
4629
|
* @description Sets the verbosity level of a logging channel by tag.
|
|
4603
4630
|
*
|
|
4604
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4631
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetLoggerChannelVerbosityByTag|Docs}
|
|
4605
4632
|
*
|
|
4606
4633
|
* @param channelID The ID of the logging channel.
|
|
4607
4634
|
* @param tag The name of the tag.
|
|
@@ -4612,7 +4639,7 @@ declare module ":s2sdk" {
|
|
|
4612
4639
|
/**
|
|
4613
4640
|
* @description Retrieves the color setting of a logging channel.
|
|
4614
4641
|
*
|
|
4615
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4642
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetLoggerChannelColor|Docs}
|
|
4616
4643
|
*
|
|
4617
4644
|
* @param channelID The ID of the logging channel.
|
|
4618
4645
|
*/
|
|
@@ -4621,7 +4648,7 @@ declare module ":s2sdk" {
|
|
|
4621
4648
|
/**
|
|
4622
4649
|
* @description Sets the color setting of a logging channel.
|
|
4623
4650
|
*
|
|
4624
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4651
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetLoggerChannelColor|Docs}
|
|
4625
4652
|
*
|
|
4626
4653
|
* @param channelID The ID of the logging channel.
|
|
4627
4654
|
* @param color The new color value to set for the channel.
|
|
@@ -4631,7 +4658,7 @@ declare module ":s2sdk" {
|
|
|
4631
4658
|
/**
|
|
4632
4659
|
* @description Retrieves the flags of a logging channel.
|
|
4633
4660
|
*
|
|
4634
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4661
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetLoggerChannelFlags|Docs}
|
|
4635
4662
|
*
|
|
4636
4663
|
* @param channelID The ID of the logging channel.
|
|
4637
4664
|
*/
|
|
@@ -4640,7 +4667,7 @@ declare module ":s2sdk" {
|
|
|
4640
4667
|
/**
|
|
4641
4668
|
* @description Sets the flags of a logging channel.
|
|
4642
4669
|
*
|
|
4643
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4670
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetLoggerChannelFlags|Docs}
|
|
4644
4671
|
*
|
|
4645
4672
|
* @param channelID The ID of the logging channel.
|
|
4646
4673
|
* @param eFlags The new flags to set for the channel.
|
|
@@ -4650,7 +4677,7 @@ declare module ":s2sdk" {
|
|
|
4650
4677
|
/**
|
|
4651
4678
|
* @description Logs a message to a specified channel with a severity level.
|
|
4652
4679
|
*
|
|
4653
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4680
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-Log|Docs}
|
|
4654
4681
|
*
|
|
4655
4682
|
* @param channelID The ID of the logging channel.
|
|
4656
4683
|
* @param severity The severity level for the log message.
|
|
@@ -4661,7 +4688,7 @@ declare module ":s2sdk" {
|
|
|
4661
4688
|
/**
|
|
4662
4689
|
* @description Logs a colored message to a specified channel with a severity level.
|
|
4663
4690
|
*
|
|
4664
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4691
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-LogColored|Docs}
|
|
4665
4692
|
*
|
|
4666
4693
|
* @param channelID The ID of the logging channel.
|
|
4667
4694
|
* @param severity The severity level for the log message.
|
|
@@ -4673,7 +4700,7 @@ declare module ":s2sdk" {
|
|
|
4673
4700
|
/**
|
|
4674
4701
|
* @description Logs a detailed message to a specified channel, including source code info.
|
|
4675
4702
|
*
|
|
4676
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4703
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-LogFull|Docs}
|
|
4677
4704
|
*
|
|
4678
4705
|
* @param channelID The ID of the logging channel.
|
|
4679
4706
|
* @param severity The severity level for the log message.
|
|
@@ -4687,7 +4714,7 @@ declare module ":s2sdk" {
|
|
|
4687
4714
|
/**
|
|
4688
4715
|
* @description Logs a detailed colored message to a specified channel, including source code info.
|
|
4689
4716
|
*
|
|
4690
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4717
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-LogFullColored|Docs}
|
|
4691
4718
|
*
|
|
4692
4719
|
* @param channelID The ID of the logging channel.
|
|
4693
4720
|
* @param severity The severity level for the log message.
|
|
@@ -4702,7 +4729,7 @@ declare module ":s2sdk" {
|
|
|
4702
4729
|
/**
|
|
4703
4730
|
* @description Start a new Yes/No vote
|
|
4704
4731
|
*
|
|
4705
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4732
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PanoramaSendYesNoVote|Docs}
|
|
4706
4733
|
*
|
|
4707
4734
|
* @param duration Maximum time to leave vote active for
|
|
4708
4735
|
* @param caller Player slot of the vote caller. Use VOTE_CALLER_SERVER for 'Server'.
|
|
@@ -4720,7 +4747,7 @@ declare module ":s2sdk" {
|
|
|
4720
4747
|
/**
|
|
4721
4748
|
* @description Start a new Yes/No vote with all players included
|
|
4722
4749
|
*
|
|
4723
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4750
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PanoramaSendYesNoVoteToAll|Docs}
|
|
4724
4751
|
*
|
|
4725
4752
|
* @param duration Maximum time to leave vote active for
|
|
4726
4753
|
* @param caller Player slot of the vote caller. Use VOTE_CALLER_SERVER for 'Server'.
|
|
@@ -4737,7 +4764,7 @@ declare module ":s2sdk" {
|
|
|
4737
4764
|
/**
|
|
4738
4765
|
* @description Removes a player from the current vote.
|
|
4739
4766
|
*
|
|
4740
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4767
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PanoramaRemovePlayerFromVote|Docs}
|
|
4741
4768
|
*
|
|
4742
4769
|
* @param playerSlot The slot/index of the player to remove from the vote.
|
|
4743
4770
|
*/
|
|
@@ -4746,7 +4773,7 @@ declare module ":s2sdk" {
|
|
|
4746
4773
|
/**
|
|
4747
4774
|
* @description Checks if a player is in the vote pool.
|
|
4748
4775
|
*
|
|
4749
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4776
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PanoramaIsPlayerInVotePool|Docs}
|
|
4750
4777
|
*
|
|
4751
4778
|
* @param playerSlot The slot/index of the player to check.
|
|
4752
4779
|
*/
|
|
@@ -4755,7 +4782,7 @@ declare module ":s2sdk" {
|
|
|
4755
4782
|
/**
|
|
4756
4783
|
* @description Redraws the vote UI to a specific player client.
|
|
4757
4784
|
*
|
|
4758
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4785
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PanoramaRedrawVoteToClient|Docs}
|
|
4759
4786
|
*
|
|
4760
4787
|
* @param playerSlot The slot/index of the player to update.
|
|
4761
4788
|
*/
|
|
@@ -4764,7 +4791,7 @@ declare module ":s2sdk" {
|
|
|
4764
4791
|
/**
|
|
4765
4792
|
* @description Checks if a vote is currently in progress.
|
|
4766
4793
|
*
|
|
4767
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4794
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PanoramaIsVoteInProgress|Docs}
|
|
4768
4795
|
*
|
|
4769
4796
|
*
|
|
4770
4797
|
*/
|
|
@@ -4773,7 +4800,7 @@ declare module ":s2sdk" {
|
|
|
4773
4800
|
/**
|
|
4774
4801
|
* @description Ends the current vote with a specified reason.
|
|
4775
4802
|
*
|
|
4776
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4803
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PanoramaEndVote|Docs}
|
|
4777
4804
|
*
|
|
4778
4805
|
* @param reason The reason for ending the vote.
|
|
4779
4806
|
*/
|
|
@@ -4782,7 +4809,7 @@ declare module ":s2sdk" {
|
|
|
4782
4809
|
/**
|
|
4783
4810
|
* @description Get the offset of a member in a given schema class.
|
|
4784
4811
|
*
|
|
4785
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4812
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetSchemaOffset|Docs}
|
|
4786
4813
|
*
|
|
4787
4814
|
* @param className The name of the class.
|
|
4788
4815
|
* @param memberName The name of the member whose offset is to be retrieved.
|
|
@@ -4792,7 +4819,7 @@ declare module ":s2sdk" {
|
|
|
4792
4819
|
/**
|
|
4793
4820
|
* @description Get the offset of a chain in a given schema class.
|
|
4794
4821
|
*
|
|
4795
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4822
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetSchemaChainOffset|Docs}
|
|
4796
4823
|
*
|
|
4797
4824
|
* @param className The name of the class.
|
|
4798
4825
|
*/
|
|
@@ -4801,7 +4828,7 @@ declare module ":s2sdk" {
|
|
|
4801
4828
|
/**
|
|
4802
4829
|
* @description Check if a schema field is networked.
|
|
4803
4830
|
*
|
|
4804
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4831
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-IsSchemaFieldNetworked|Docs}
|
|
4805
4832
|
*
|
|
4806
4833
|
* @param className The name of the class.
|
|
4807
4834
|
* @param memberName The name of the member to check.
|
|
@@ -4811,7 +4838,7 @@ declare module ":s2sdk" {
|
|
|
4811
4838
|
/**
|
|
4812
4839
|
* @description Get the size of a schema class.
|
|
4813
4840
|
*
|
|
4814
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4841
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetSchemaClassSize|Docs}
|
|
4815
4842
|
*
|
|
4816
4843
|
* @param className The name of the class.
|
|
4817
4844
|
*/
|
|
@@ -4820,7 +4847,7 @@ declare module ":s2sdk" {
|
|
|
4820
4847
|
/**
|
|
4821
4848
|
* @description Peeks into an entity's object schema and retrieves the integer value at the given offset.
|
|
4822
4849
|
*
|
|
4823
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4850
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntData2|Docs}
|
|
4824
4851
|
*
|
|
4825
4852
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
4826
4853
|
* @param offset The offset of the schema to use.
|
|
@@ -4831,7 +4858,7 @@ declare module ":s2sdk" {
|
|
|
4831
4858
|
/**
|
|
4832
4859
|
* @description Peeks into an entity's object data and sets the integer value at the given offset.
|
|
4833
4860
|
*
|
|
4834
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4861
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntData2|Docs}
|
|
4835
4862
|
*
|
|
4836
4863
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
4837
4864
|
* @param offset The offset of the schema to use.
|
|
@@ -4845,7 +4872,7 @@ declare module ":s2sdk" {
|
|
|
4845
4872
|
/**
|
|
4846
4873
|
* @description Peeks into an entity's object schema and retrieves the float value at the given offset.
|
|
4847
4874
|
*
|
|
4848
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4875
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntDataFloat2|Docs}
|
|
4849
4876
|
*
|
|
4850
4877
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
4851
4878
|
* @param offset The offset of the schema to use.
|
|
@@ -4856,7 +4883,7 @@ declare module ":s2sdk" {
|
|
|
4856
4883
|
/**
|
|
4857
4884
|
* @description Peeks into an entity's object data and sets the float value at the given offset.
|
|
4858
4885
|
*
|
|
4859
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4886
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntDataFloat2|Docs}
|
|
4860
4887
|
*
|
|
4861
4888
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
4862
4889
|
* @param offset The offset of the schema to use.
|
|
@@ -4870,7 +4897,7 @@ declare module ":s2sdk" {
|
|
|
4870
4897
|
/**
|
|
4871
4898
|
* @description Peeks into an entity's object schema and retrieves the string value at the given offset.
|
|
4872
4899
|
*
|
|
4873
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4900
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntDataString2|Docs}
|
|
4874
4901
|
*
|
|
4875
4902
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
4876
4903
|
* @param offset The offset of the schema to use.
|
|
@@ -4880,7 +4907,7 @@ declare module ":s2sdk" {
|
|
|
4880
4907
|
/**
|
|
4881
4908
|
* @description Peeks into an entity's object data and sets the string at the given offset.
|
|
4882
4909
|
*
|
|
4883
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4910
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntDataString2|Docs}
|
|
4884
4911
|
*
|
|
4885
4912
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
4886
4913
|
* @param offset The offset of the schema to use.
|
|
@@ -4893,7 +4920,7 @@ declare module ":s2sdk" {
|
|
|
4893
4920
|
/**
|
|
4894
4921
|
* @description Peeks into an entity's object schema and retrieves the vector value at the given offset.
|
|
4895
4922
|
*
|
|
4896
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4923
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntDataVector2|Docs}
|
|
4897
4924
|
*
|
|
4898
4925
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
4899
4926
|
* @param offset The offset of the schema to use.
|
|
@@ -4903,7 +4930,7 @@ declare module ":s2sdk" {
|
|
|
4903
4930
|
/**
|
|
4904
4931
|
* @description Peeks into an entity's object data and sets the vector at the given offset.
|
|
4905
4932
|
*
|
|
4906
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4933
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntDataVector2|Docs}
|
|
4907
4934
|
*
|
|
4908
4935
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
4909
4936
|
* @param offset The offset of the schema to use.
|
|
@@ -4916,7 +4943,7 @@ declare module ":s2sdk" {
|
|
|
4916
4943
|
/**
|
|
4917
4944
|
* @description Peeks into an entity's object data and retrieves the entity handle at the given offset.
|
|
4918
4945
|
*
|
|
4919
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4946
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntDataEnt2|Docs}
|
|
4920
4947
|
*
|
|
4921
4948
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
4922
4949
|
* @param offset The offset of the schema to use.
|
|
@@ -4926,7 +4953,7 @@ declare module ":s2sdk" {
|
|
|
4926
4953
|
/**
|
|
4927
4954
|
* @description Peeks into an entity's object data and sets the entity handle at the given offset.
|
|
4928
4955
|
*
|
|
4929
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4956
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntDataEnt2|Docs}
|
|
4930
4957
|
*
|
|
4931
4958
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
4932
4959
|
* @param offset The offset of the schema to use.
|
|
@@ -4939,7 +4966,7 @@ declare module ":s2sdk" {
|
|
|
4939
4966
|
/**
|
|
4940
4967
|
* @description Updates the networked state of a schema field for a given entity pointer.
|
|
4941
4968
|
*
|
|
4942
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4969
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-ChangeEntityState2|Docs}
|
|
4943
4970
|
*
|
|
4944
4971
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
4945
4972
|
* @param offset The offset of the schema to use.
|
|
@@ -4950,7 +4977,7 @@ declare module ":s2sdk" {
|
|
|
4950
4977
|
/**
|
|
4951
4978
|
* @description Peeks into an entity's object schema and retrieves the integer value at the given offset.
|
|
4952
4979
|
*
|
|
4953
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4980
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntData|Docs}
|
|
4954
4981
|
*
|
|
4955
4982
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
4956
4983
|
* @param offset The offset of the schema to use.
|
|
@@ -4961,7 +4988,7 @@ declare module ":s2sdk" {
|
|
|
4961
4988
|
/**
|
|
4962
4989
|
* @description Peeks into an entity's object data and sets the integer value at the given offset.
|
|
4963
4990
|
*
|
|
4964
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
4991
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntData|Docs}
|
|
4965
4992
|
*
|
|
4966
4993
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
4967
4994
|
* @param offset The offset of the schema to use.
|
|
@@ -4975,7 +5002,7 @@ declare module ":s2sdk" {
|
|
|
4975
5002
|
/**
|
|
4976
5003
|
* @description Peeks into an entity's object schema and retrieves the float value at the given offset.
|
|
4977
5004
|
*
|
|
4978
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5005
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntDataFloat|Docs}
|
|
4979
5006
|
*
|
|
4980
5007
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
4981
5008
|
* @param offset The offset of the schema to use.
|
|
@@ -4986,7 +5013,7 @@ declare module ":s2sdk" {
|
|
|
4986
5013
|
/**
|
|
4987
5014
|
* @description Peeks into an entity's object data and sets the float value at the given offset.
|
|
4988
5015
|
*
|
|
4989
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5016
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntDataFloat|Docs}
|
|
4990
5017
|
*
|
|
4991
5018
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
4992
5019
|
* @param offset The offset of the schema to use.
|
|
@@ -5000,7 +5027,7 @@ declare module ":s2sdk" {
|
|
|
5000
5027
|
/**
|
|
5001
5028
|
* @description Peeks into an entity's object schema and retrieves the string value at the given offset.
|
|
5002
5029
|
*
|
|
5003
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5030
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntDataString|Docs}
|
|
5004
5031
|
*
|
|
5005
5032
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5006
5033
|
* @param offset The offset of the schema to use.
|
|
@@ -5010,7 +5037,7 @@ declare module ":s2sdk" {
|
|
|
5010
5037
|
/**
|
|
5011
5038
|
* @description Peeks into an entity's object data and sets the string at the given offset.
|
|
5012
5039
|
*
|
|
5013
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5040
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntDataString|Docs}
|
|
5014
5041
|
*
|
|
5015
5042
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5016
5043
|
* @param offset The offset of the schema to use.
|
|
@@ -5023,7 +5050,7 @@ declare module ":s2sdk" {
|
|
|
5023
5050
|
/**
|
|
5024
5051
|
* @description Peeks into an entity's object schema and retrieves the vector value at the given offset.
|
|
5025
5052
|
*
|
|
5026
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5053
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntDataVector|Docs}
|
|
5027
5054
|
*
|
|
5028
5055
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5029
5056
|
* @param offset The offset of the schema to use.
|
|
@@ -5033,7 +5060,7 @@ declare module ":s2sdk" {
|
|
|
5033
5060
|
/**
|
|
5034
5061
|
* @description Peeks into an entity's object data and sets the vector at the given offset.
|
|
5035
5062
|
*
|
|
5036
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5063
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntDataVector|Docs}
|
|
5037
5064
|
*
|
|
5038
5065
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5039
5066
|
* @param offset The offset of the schema to use.
|
|
@@ -5046,7 +5073,7 @@ declare module ":s2sdk" {
|
|
|
5046
5073
|
/**
|
|
5047
5074
|
* @description Peeks into an entity's object data and retrieves the entity handle at the given offset.
|
|
5048
5075
|
*
|
|
5049
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5076
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntDataEnt|Docs}
|
|
5050
5077
|
*
|
|
5051
5078
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5052
5079
|
* @param offset The offset of the schema to use.
|
|
@@ -5056,7 +5083,7 @@ declare module ":s2sdk" {
|
|
|
5056
5083
|
/**
|
|
5057
5084
|
* @description Peeks into an entity's object data and sets the entity handle at the given offset.
|
|
5058
5085
|
*
|
|
5059
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5086
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntDataEnt|Docs}
|
|
5060
5087
|
*
|
|
5061
5088
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5062
5089
|
* @param offset The offset of the schema to use.
|
|
@@ -5069,7 +5096,7 @@ declare module ":s2sdk" {
|
|
|
5069
5096
|
/**
|
|
5070
5097
|
* @description Updates the networked state of a schema field for a given entity handle.
|
|
5071
5098
|
*
|
|
5072
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5099
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-ChangeEntityState|Docs}
|
|
5073
5100
|
*
|
|
5074
5101
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5075
5102
|
* @param offset The offset of the schema to use.
|
|
@@ -5080,7 +5107,7 @@ declare module ":s2sdk" {
|
|
|
5080
5107
|
/**
|
|
5081
5108
|
* @description Retrieves the count of values that an entity schema's array can store.
|
|
5082
5109
|
*
|
|
5083
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5110
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaArraySize2|Docs}
|
|
5084
5111
|
*
|
|
5085
5112
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5086
5113
|
* @param className The name of the class.
|
|
@@ -5091,7 +5118,7 @@ declare module ":s2sdk" {
|
|
|
5091
5118
|
/**
|
|
5092
5119
|
* @description Retrieves an integer value from an entity's schema.
|
|
5093
5120
|
*
|
|
5094
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5121
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchema2|Docs}
|
|
5095
5122
|
*
|
|
5096
5123
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5097
5124
|
* @param className The name of the class.
|
|
@@ -5103,7 +5130,7 @@ declare module ":s2sdk" {
|
|
|
5103
5130
|
/**
|
|
5104
5131
|
* @description Sets an integer value in an entity's schema.
|
|
5105
5132
|
*
|
|
5106
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5133
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchema2|Docs}
|
|
5107
5134
|
*
|
|
5108
5135
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5109
5136
|
* @param className The name of the class.
|
|
@@ -5117,7 +5144,7 @@ declare module ":s2sdk" {
|
|
|
5117
5144
|
/**
|
|
5118
5145
|
* @description Retrieves a float value from an entity's schema.
|
|
5119
5146
|
*
|
|
5120
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5147
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaFloat2|Docs}
|
|
5121
5148
|
*
|
|
5122
5149
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5123
5150
|
* @param className The name of the class.
|
|
@@ -5129,7 +5156,7 @@ declare module ":s2sdk" {
|
|
|
5129
5156
|
/**
|
|
5130
5157
|
* @description Sets a float value in an entity's schema.
|
|
5131
5158
|
*
|
|
5132
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5159
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaFloat2|Docs}
|
|
5133
5160
|
*
|
|
5134
5161
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5135
5162
|
* @param className The name of the class.
|
|
@@ -5143,7 +5170,7 @@ declare module ":s2sdk" {
|
|
|
5143
5170
|
/**
|
|
5144
5171
|
* @description Retrieves a string value from an entity's schema.
|
|
5145
5172
|
*
|
|
5146
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5173
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaString2|Docs}
|
|
5147
5174
|
*
|
|
5148
5175
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5149
5176
|
* @param className The name of the class.
|
|
@@ -5155,7 +5182,7 @@ declare module ":s2sdk" {
|
|
|
5155
5182
|
/**
|
|
5156
5183
|
* @description Sets a string value in an entity's schema.
|
|
5157
5184
|
*
|
|
5158
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5185
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaString2|Docs}
|
|
5159
5186
|
*
|
|
5160
5187
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5161
5188
|
* @param className The name of the class.
|
|
@@ -5169,7 +5196,7 @@ declare module ":s2sdk" {
|
|
|
5169
5196
|
/**
|
|
5170
5197
|
* @description Retrieves a vector value from an entity's schema.
|
|
5171
5198
|
*
|
|
5172
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5199
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaVector3D2|Docs}
|
|
5173
5200
|
*
|
|
5174
5201
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5175
5202
|
* @param className The name of the class.
|
|
@@ -5181,7 +5208,7 @@ declare module ":s2sdk" {
|
|
|
5181
5208
|
/**
|
|
5182
5209
|
* @description Sets a vector value in an entity's schema.
|
|
5183
5210
|
*
|
|
5184
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5211
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaVector3D2|Docs}
|
|
5185
5212
|
*
|
|
5186
5213
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5187
5214
|
* @param className The name of the class.
|
|
@@ -5195,7 +5222,7 @@ declare module ":s2sdk" {
|
|
|
5195
5222
|
/**
|
|
5196
5223
|
* @description Retrieves a vector value from an entity's schema.
|
|
5197
5224
|
*
|
|
5198
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5225
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaVector2D2|Docs}
|
|
5199
5226
|
*
|
|
5200
5227
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5201
5228
|
* @param className The name of the class.
|
|
@@ -5207,7 +5234,7 @@ declare module ":s2sdk" {
|
|
|
5207
5234
|
/**
|
|
5208
5235
|
* @description Sets a vector value in an entity's schema.
|
|
5209
5236
|
*
|
|
5210
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5237
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaVector2D2|Docs}
|
|
5211
5238
|
*
|
|
5212
5239
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5213
5240
|
* @param className The name of the class.
|
|
@@ -5221,7 +5248,7 @@ declare module ":s2sdk" {
|
|
|
5221
5248
|
/**
|
|
5222
5249
|
* @description Retrieves a vector value from an entity's schema.
|
|
5223
5250
|
*
|
|
5224
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5251
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaVector4D2|Docs}
|
|
5225
5252
|
*
|
|
5226
5253
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5227
5254
|
* @param className The name of the class.
|
|
@@ -5233,7 +5260,7 @@ declare module ":s2sdk" {
|
|
|
5233
5260
|
/**
|
|
5234
5261
|
* @description Sets a vector value in an entity's schema.
|
|
5235
5262
|
*
|
|
5236
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5263
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaVector4D2|Docs}
|
|
5237
5264
|
*
|
|
5238
5265
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5239
5266
|
* @param className The name of the class.
|
|
@@ -5247,7 +5274,7 @@ declare module ":s2sdk" {
|
|
|
5247
5274
|
/**
|
|
5248
5275
|
* @description Retrieves an entity handle from an entity's schema.
|
|
5249
5276
|
*
|
|
5250
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5277
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaEnt2|Docs}
|
|
5251
5278
|
*
|
|
5252
5279
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5253
5280
|
* @param className The name of the class.
|
|
@@ -5259,7 +5286,7 @@ declare module ":s2sdk" {
|
|
|
5259
5286
|
/**
|
|
5260
5287
|
* @description Sets an entity handle in an entity's schema.
|
|
5261
5288
|
*
|
|
5262
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5289
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaEnt2|Docs}
|
|
5263
5290
|
*
|
|
5264
5291
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5265
5292
|
* @param className The name of the class.
|
|
@@ -5273,7 +5300,7 @@ declare module ":s2sdk" {
|
|
|
5273
5300
|
/**
|
|
5274
5301
|
* @description Updates the networked state of a schema field for a given entity pointer.
|
|
5275
5302
|
*
|
|
5276
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5303
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-NetworkStateChanged2|Docs}
|
|
5277
5304
|
*
|
|
5278
5305
|
* @param entity Pointer to the instance of the class where the value is to be set.
|
|
5279
5306
|
* @param className The name of the class that contains the member.
|
|
@@ -5284,7 +5311,7 @@ declare module ":s2sdk" {
|
|
|
5284
5311
|
/**
|
|
5285
5312
|
* @description Retrieves the count of values that an entity schema's array can store.
|
|
5286
5313
|
*
|
|
5287
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5314
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaArraySize|Docs}
|
|
5288
5315
|
*
|
|
5289
5316
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5290
5317
|
* @param className The name of the class.
|
|
@@ -5295,7 +5322,7 @@ declare module ":s2sdk" {
|
|
|
5295
5322
|
/**
|
|
5296
5323
|
* @description Retrieves an integer value from an entity's schema.
|
|
5297
5324
|
*
|
|
5298
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5325
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchema|Docs}
|
|
5299
5326
|
*
|
|
5300
5327
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5301
5328
|
* @param className The name of the class.
|
|
@@ -5307,7 +5334,7 @@ declare module ":s2sdk" {
|
|
|
5307
5334
|
/**
|
|
5308
5335
|
* @description Sets an integer value in an entity's schema.
|
|
5309
5336
|
*
|
|
5310
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5337
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchema|Docs}
|
|
5311
5338
|
*
|
|
5312
5339
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5313
5340
|
* @param className The name of the class.
|
|
@@ -5321,7 +5348,7 @@ declare module ":s2sdk" {
|
|
|
5321
5348
|
/**
|
|
5322
5349
|
* @description Retrieves a float value from an entity's schema.
|
|
5323
5350
|
*
|
|
5324
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5351
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaFloat|Docs}
|
|
5325
5352
|
*
|
|
5326
5353
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5327
5354
|
* @param className The name of the class.
|
|
@@ -5333,7 +5360,7 @@ declare module ":s2sdk" {
|
|
|
5333
5360
|
/**
|
|
5334
5361
|
* @description Sets a float value in an entity's schema.
|
|
5335
5362
|
*
|
|
5336
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5363
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaFloat|Docs}
|
|
5337
5364
|
*
|
|
5338
5365
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5339
5366
|
* @param className The name of the class.
|
|
@@ -5347,7 +5374,7 @@ declare module ":s2sdk" {
|
|
|
5347
5374
|
/**
|
|
5348
5375
|
* @description Retrieves a string value from an entity's schema.
|
|
5349
5376
|
*
|
|
5350
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5377
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaString|Docs}
|
|
5351
5378
|
*
|
|
5352
5379
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5353
5380
|
* @param className The name of the class.
|
|
@@ -5359,7 +5386,7 @@ declare module ":s2sdk" {
|
|
|
5359
5386
|
/**
|
|
5360
5387
|
* @description Sets a string value in an entity's schema.
|
|
5361
5388
|
*
|
|
5362
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5389
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaString|Docs}
|
|
5363
5390
|
*
|
|
5364
5391
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5365
5392
|
* @param className The name of the class.
|
|
@@ -5373,7 +5400,7 @@ declare module ":s2sdk" {
|
|
|
5373
5400
|
/**
|
|
5374
5401
|
* @description Retrieves a vector value from an entity's schema.
|
|
5375
5402
|
*
|
|
5376
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5403
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaVector3D|Docs}
|
|
5377
5404
|
*
|
|
5378
5405
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5379
5406
|
* @param className The name of the class.
|
|
@@ -5385,7 +5412,7 @@ declare module ":s2sdk" {
|
|
|
5385
5412
|
/**
|
|
5386
5413
|
* @description Sets a vector value in an entity's schema.
|
|
5387
5414
|
*
|
|
5388
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5415
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaVector3D|Docs}
|
|
5389
5416
|
*
|
|
5390
5417
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5391
5418
|
* @param className The name of the class.
|
|
@@ -5399,7 +5426,7 @@ declare module ":s2sdk" {
|
|
|
5399
5426
|
/**
|
|
5400
5427
|
* @description Retrieves a vector value from an entity's schema.
|
|
5401
5428
|
*
|
|
5402
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5429
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaVector2D|Docs}
|
|
5403
5430
|
*
|
|
5404
5431
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5405
5432
|
* @param className The name of the class.
|
|
@@ -5411,7 +5438,7 @@ declare module ":s2sdk" {
|
|
|
5411
5438
|
/**
|
|
5412
5439
|
* @description Sets a vector value in an entity's schema.
|
|
5413
5440
|
*
|
|
5414
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5441
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaVector2D|Docs}
|
|
5415
5442
|
*
|
|
5416
5443
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5417
5444
|
* @param className The name of the class.
|
|
@@ -5425,7 +5452,7 @@ declare module ":s2sdk" {
|
|
|
5425
5452
|
/**
|
|
5426
5453
|
* @description Retrieves a vector value from an entity's schema.
|
|
5427
5454
|
*
|
|
5428
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5455
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaVector4D|Docs}
|
|
5429
5456
|
*
|
|
5430
5457
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5431
5458
|
* @param className The name of the class.
|
|
@@ -5437,7 +5464,7 @@ declare module ":s2sdk" {
|
|
|
5437
5464
|
/**
|
|
5438
5465
|
* @description Sets a vector value in an entity's schema.
|
|
5439
5466
|
*
|
|
5440
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5467
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaVector4D|Docs}
|
|
5441
5468
|
*
|
|
5442
5469
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5443
5470
|
* @param className The name of the class.
|
|
@@ -5451,7 +5478,7 @@ declare module ":s2sdk" {
|
|
|
5451
5478
|
/**
|
|
5452
5479
|
* @description Retrieves an entity handle from an entity's schema.
|
|
5453
5480
|
*
|
|
5454
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5481
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetEntSchemaEnt|Docs}
|
|
5455
5482
|
*
|
|
5456
5483
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5457
5484
|
* @param className The name of the class.
|
|
@@ -5463,7 +5490,7 @@ declare module ":s2sdk" {
|
|
|
5463
5490
|
/**
|
|
5464
5491
|
* @description Sets an entity handle in an entity's schema.
|
|
5465
5492
|
*
|
|
5466
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5493
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-SetEntSchemaEnt|Docs}
|
|
5467
5494
|
*
|
|
5468
5495
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5469
5496
|
* @param className The name of the class.
|
|
@@ -5477,7 +5504,7 @@ declare module ":s2sdk" {
|
|
|
5477
5504
|
/**
|
|
5478
5505
|
* @description Updates the networked state of a schema field for a given entity handle.
|
|
5479
5506
|
*
|
|
5480
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5507
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-NetworkStateChanged|Docs}
|
|
5481
5508
|
*
|
|
5482
5509
|
* @param entityHandle The handle of the entity from which the value is to be retrieved.
|
|
5483
5510
|
* @param className The name of the class that contains the member.
|
|
@@ -5488,7 +5515,7 @@ declare module ":s2sdk" {
|
|
|
5488
5515
|
/**
|
|
5489
5516
|
* @description Creates a new timer that executes a callback function at specified delays.
|
|
5490
5517
|
*
|
|
5491
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5518
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-CreateTimer|Docs}
|
|
5492
5519
|
*
|
|
5493
5520
|
* @param delay The time delay in seconds between each callback execution.
|
|
5494
5521
|
* @param callback The function to be called when the timer expires.
|
|
@@ -5500,7 +5527,7 @@ declare module ":s2sdk" {
|
|
|
5500
5527
|
/**
|
|
5501
5528
|
* @description Stops and removes an existing timer.
|
|
5502
5529
|
*
|
|
5503
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5530
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-KillsTimer|Docs}
|
|
5504
5531
|
*
|
|
5505
5532
|
* @param timer A id of the Timer object to be stopped and removed.
|
|
5506
5533
|
*/
|
|
@@ -5509,7 +5536,7 @@ declare module ":s2sdk" {
|
|
|
5509
5536
|
/**
|
|
5510
5537
|
* @description Reschedules an existing timer with a new delay.
|
|
5511
5538
|
*
|
|
5512
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5539
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-RescheduleTimer|Docs}
|
|
5513
5540
|
*
|
|
5514
5541
|
* @param timer A id of the Timer object to be stopped and removed.
|
|
5515
5542
|
* @param newDaly The new delay in seconds between each callback execution.
|
|
@@ -5519,7 +5546,7 @@ declare module ":s2sdk" {
|
|
|
5519
5546
|
/**
|
|
5520
5547
|
* @description Returns the number of seconds in between game server ticks.
|
|
5521
5548
|
*
|
|
5522
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5549
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetTickInterval|Docs}
|
|
5523
5550
|
*
|
|
5524
5551
|
*
|
|
5525
5552
|
*/
|
|
@@ -5528,7 +5555,7 @@ declare module ":s2sdk" {
|
|
|
5528
5555
|
/**
|
|
5529
5556
|
* @description Returns the simulated game time.
|
|
5530
5557
|
*
|
|
5531
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5558
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetTickedTime|Docs}
|
|
5532
5559
|
*
|
|
5533
5560
|
*
|
|
5534
5561
|
*/
|
|
@@ -5537,7 +5564,7 @@ declare module ":s2sdk" {
|
|
|
5537
5564
|
/**
|
|
5538
5565
|
* @description Register callback to event.
|
|
5539
5566
|
*
|
|
5540
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5567
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientConnect_Register|Docs}
|
|
5541
5568
|
*
|
|
5542
5569
|
* @param callback Function callback.
|
|
5543
5570
|
*/
|
|
@@ -5546,7 +5573,7 @@ declare module ":s2sdk" {
|
|
|
5546
5573
|
/**
|
|
5547
5574
|
* @description Unregister callback to event.
|
|
5548
5575
|
*
|
|
5549
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5576
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientConnect_Unregister|Docs}
|
|
5550
5577
|
*
|
|
5551
5578
|
* @param callback Function callback.
|
|
5552
5579
|
*/
|
|
@@ -5555,7 +5582,7 @@ declare module ":s2sdk" {
|
|
|
5555
5582
|
/**
|
|
5556
5583
|
* @description Register callback to event.
|
|
5557
5584
|
*
|
|
5558
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5585
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientConnect_Post_Register|Docs}
|
|
5559
5586
|
*
|
|
5560
5587
|
* @param callback Function callback.
|
|
5561
5588
|
*/
|
|
@@ -5564,7 +5591,7 @@ declare module ":s2sdk" {
|
|
|
5564
5591
|
/**
|
|
5565
5592
|
* @description Unregister callback to event.
|
|
5566
5593
|
*
|
|
5567
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5594
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientConnect_Post_Unregister|Docs}
|
|
5568
5595
|
*
|
|
5569
5596
|
* @param callback Function callback.
|
|
5570
5597
|
*/
|
|
@@ -5573,7 +5600,7 @@ declare module ":s2sdk" {
|
|
|
5573
5600
|
/**
|
|
5574
5601
|
* @description Register callback to event.
|
|
5575
5602
|
*
|
|
5576
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5603
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientConnected_Register|Docs}
|
|
5577
5604
|
*
|
|
5578
5605
|
* @param callback Function callback.
|
|
5579
5606
|
*/
|
|
@@ -5582,7 +5609,7 @@ declare module ":s2sdk" {
|
|
|
5582
5609
|
/**
|
|
5583
5610
|
* @description Unregister callback to event.
|
|
5584
5611
|
*
|
|
5585
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5612
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientConnected_Unregister|Docs}
|
|
5586
5613
|
*
|
|
5587
5614
|
* @param callback Function callback.
|
|
5588
5615
|
*/
|
|
@@ -5591,7 +5618,7 @@ declare module ":s2sdk" {
|
|
|
5591
5618
|
/**
|
|
5592
5619
|
* @description Register callback to event.
|
|
5593
5620
|
*
|
|
5594
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5621
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientPutInServer_Register|Docs}
|
|
5595
5622
|
*
|
|
5596
5623
|
* @param callback Function callback.
|
|
5597
5624
|
*/
|
|
@@ -5600,7 +5627,7 @@ declare module ":s2sdk" {
|
|
|
5600
5627
|
/**
|
|
5601
5628
|
* @description Unregister callback to event.
|
|
5602
5629
|
*
|
|
5603
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5630
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientPutInServer_Unregister|Docs}
|
|
5604
5631
|
*
|
|
5605
5632
|
* @param callback Function callback.
|
|
5606
5633
|
*/
|
|
@@ -5609,7 +5636,7 @@ declare module ":s2sdk" {
|
|
|
5609
5636
|
/**
|
|
5610
5637
|
* @description Register callback to event.
|
|
5611
5638
|
*
|
|
5612
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5639
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientDisconnect_Register|Docs}
|
|
5613
5640
|
*
|
|
5614
5641
|
* @param callback Function callback.
|
|
5615
5642
|
*/
|
|
@@ -5618,7 +5645,7 @@ declare module ":s2sdk" {
|
|
|
5618
5645
|
/**
|
|
5619
5646
|
* @description Unregister callback to event.
|
|
5620
5647
|
*
|
|
5621
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5648
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientDisconnect_Unregister|Docs}
|
|
5622
5649
|
*
|
|
5623
5650
|
* @param callback Function callback.
|
|
5624
5651
|
*/
|
|
@@ -5627,7 +5654,7 @@ declare module ":s2sdk" {
|
|
|
5627
5654
|
/**
|
|
5628
5655
|
* @description Register callback to event.
|
|
5629
5656
|
*
|
|
5630
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5657
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientDisconnect_Post_Register|Docs}
|
|
5631
5658
|
*
|
|
5632
5659
|
* @param callback Function callback.
|
|
5633
5660
|
*/
|
|
@@ -5636,7 +5663,7 @@ declare module ":s2sdk" {
|
|
|
5636
5663
|
/**
|
|
5637
5664
|
* @description Unregister callback to event.
|
|
5638
5665
|
*
|
|
5639
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5666
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientDisconnect_Post_Unregister|Docs}
|
|
5640
5667
|
*
|
|
5641
5668
|
* @param callback Function callback.
|
|
5642
5669
|
*/
|
|
@@ -5645,7 +5672,7 @@ declare module ":s2sdk" {
|
|
|
5645
5672
|
/**
|
|
5646
5673
|
* @description Register callback to event.
|
|
5647
5674
|
*
|
|
5648
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5675
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientActive_Register|Docs}
|
|
5649
5676
|
*
|
|
5650
5677
|
* @param callback Function callback.
|
|
5651
5678
|
*/
|
|
@@ -5654,7 +5681,7 @@ declare module ":s2sdk" {
|
|
|
5654
5681
|
/**
|
|
5655
5682
|
* @description Unregister callback to event.
|
|
5656
5683
|
*
|
|
5657
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5684
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientActive_Unregister|Docs}
|
|
5658
5685
|
*
|
|
5659
5686
|
* @param callback Function callback.
|
|
5660
5687
|
*/
|
|
@@ -5663,7 +5690,7 @@ declare module ":s2sdk" {
|
|
|
5663
5690
|
/**
|
|
5664
5691
|
* @description Register callback to event.
|
|
5665
5692
|
*
|
|
5666
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5693
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientFullyConnect_Register|Docs}
|
|
5667
5694
|
*
|
|
5668
5695
|
* @param callback Function callback.
|
|
5669
5696
|
*/
|
|
@@ -5672,7 +5699,7 @@ declare module ":s2sdk" {
|
|
|
5672
5699
|
/**
|
|
5673
5700
|
* @description Unregister callback to event.
|
|
5674
5701
|
*
|
|
5675
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5702
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientFullyConnect_Unregister|Docs}
|
|
5676
5703
|
*
|
|
5677
5704
|
* @param callback Function callback.
|
|
5678
5705
|
*/
|
|
@@ -5681,7 +5708,7 @@ declare module ":s2sdk" {
|
|
|
5681
5708
|
/**
|
|
5682
5709
|
* @description Register callback to event.
|
|
5683
5710
|
*
|
|
5684
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5711
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientSettingsChanged_Register|Docs}
|
|
5685
5712
|
*
|
|
5686
5713
|
* @param callback Function callback.
|
|
5687
5714
|
*/
|
|
@@ -5690,7 +5717,7 @@ declare module ":s2sdk" {
|
|
|
5690
5717
|
/**
|
|
5691
5718
|
* @description Unregister callback to event.
|
|
5692
5719
|
*
|
|
5693
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5720
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientSettingsChanged_Unregister|Docs}
|
|
5694
5721
|
*
|
|
5695
5722
|
* @param callback Function callback.
|
|
5696
5723
|
*/
|
|
@@ -5699,7 +5726,7 @@ declare module ":s2sdk" {
|
|
|
5699
5726
|
/**
|
|
5700
5727
|
* @description Register callback to event.
|
|
5701
5728
|
*
|
|
5702
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5729
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientAuthenticated_Register|Docs}
|
|
5703
5730
|
*
|
|
5704
5731
|
* @param callback Function callback.
|
|
5705
5732
|
*/
|
|
@@ -5708,7 +5735,7 @@ declare module ":s2sdk" {
|
|
|
5708
5735
|
/**
|
|
5709
5736
|
* @description Unregister callback to event.
|
|
5710
5737
|
*
|
|
5711
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5738
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnClientAuthenticated_Unregister|Docs}
|
|
5712
5739
|
*
|
|
5713
5740
|
* @param callback Function callback.
|
|
5714
5741
|
*/
|
|
@@ -5717,7 +5744,7 @@ declare module ":s2sdk" {
|
|
|
5717
5744
|
/**
|
|
5718
5745
|
* @description Register callback to event.
|
|
5719
5746
|
*
|
|
5720
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5747
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnLevelInit_Register|Docs}
|
|
5721
5748
|
*
|
|
5722
5749
|
* @param callback Function callback.
|
|
5723
5750
|
*/
|
|
@@ -5726,7 +5753,7 @@ declare module ":s2sdk" {
|
|
|
5726
5753
|
/**
|
|
5727
5754
|
* @description Unregister callback to event.
|
|
5728
5755
|
*
|
|
5729
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5756
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnLevelInit_Unregister|Docs}
|
|
5730
5757
|
*
|
|
5731
5758
|
* @param callback Function callback.
|
|
5732
5759
|
*/
|
|
@@ -5735,7 +5762,7 @@ declare module ":s2sdk" {
|
|
|
5735
5762
|
/**
|
|
5736
5763
|
* @description Register callback to event.
|
|
5737
5764
|
*
|
|
5738
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5765
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnLevelShutdown_Register|Docs}
|
|
5739
5766
|
*
|
|
5740
5767
|
* @param callback Function callback.
|
|
5741
5768
|
*/
|
|
@@ -5744,7 +5771,7 @@ declare module ":s2sdk" {
|
|
|
5744
5771
|
/**
|
|
5745
5772
|
* @description Unregister callback to event.
|
|
5746
5773
|
*
|
|
5747
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5774
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnLevelShutdown_Unregister|Docs}
|
|
5748
5775
|
*
|
|
5749
5776
|
* @param callback Function callback.
|
|
5750
5777
|
*/
|
|
@@ -5753,7 +5780,7 @@ declare module ":s2sdk" {
|
|
|
5753
5780
|
/**
|
|
5754
5781
|
* @description Register callback to event.
|
|
5755
5782
|
*
|
|
5756
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5783
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntitySpawned_Register|Docs}
|
|
5757
5784
|
*
|
|
5758
5785
|
* @param callback Function callback.
|
|
5759
5786
|
*/
|
|
@@ -5762,7 +5789,7 @@ declare module ":s2sdk" {
|
|
|
5762
5789
|
/**
|
|
5763
5790
|
* @description Unregister callback to event.
|
|
5764
5791
|
*
|
|
5765
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5792
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntitySpawned_Unregister|Docs}
|
|
5766
5793
|
*
|
|
5767
5794
|
* @param callback Function callback.
|
|
5768
5795
|
*/
|
|
@@ -5771,7 +5798,7 @@ declare module ":s2sdk" {
|
|
|
5771
5798
|
/**
|
|
5772
5799
|
* @description Register callback to event.
|
|
5773
5800
|
*
|
|
5774
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5801
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntityCreated_Register|Docs}
|
|
5775
5802
|
*
|
|
5776
5803
|
* @param callback Function callback.
|
|
5777
5804
|
*/
|
|
@@ -5780,7 +5807,7 @@ declare module ":s2sdk" {
|
|
|
5780
5807
|
/**
|
|
5781
5808
|
* @description Unregister callback to event.
|
|
5782
5809
|
*
|
|
5783
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5810
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntityCreated_Unregister|Docs}
|
|
5784
5811
|
*
|
|
5785
5812
|
* @param callback Function callback.
|
|
5786
5813
|
*/
|
|
@@ -5789,7 +5816,7 @@ declare module ":s2sdk" {
|
|
|
5789
5816
|
/**
|
|
5790
5817
|
* @description Register callback to event.
|
|
5791
5818
|
*
|
|
5792
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5819
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntityDeleted_Register|Docs}
|
|
5793
5820
|
*
|
|
5794
5821
|
* @param callback Function callback.
|
|
5795
5822
|
*/
|
|
@@ -5798,7 +5825,7 @@ declare module ":s2sdk" {
|
|
|
5798
5825
|
/**
|
|
5799
5826
|
* @description Unregister callback to event.
|
|
5800
5827
|
*
|
|
5801
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5828
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntityDeleted_Unregister|Docs}
|
|
5802
5829
|
*
|
|
5803
5830
|
* @param callback Function callback.
|
|
5804
5831
|
*/
|
|
@@ -5807,7 +5834,7 @@ declare module ":s2sdk" {
|
|
|
5807
5834
|
/**
|
|
5808
5835
|
* @description Register callback to event.
|
|
5809
5836
|
*
|
|
5810
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5837
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntityParentChanged_Register|Docs}
|
|
5811
5838
|
*
|
|
5812
5839
|
* @param callback Function callback.
|
|
5813
5840
|
*/
|
|
@@ -5816,7 +5843,7 @@ declare module ":s2sdk" {
|
|
|
5816
5843
|
/**
|
|
5817
5844
|
* @description Unregister callback to event.
|
|
5818
5845
|
*
|
|
5819
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5846
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnEntityParentChanged_Unregister|Docs}
|
|
5820
5847
|
*
|
|
5821
5848
|
* @param callback Function callback.
|
|
5822
5849
|
*/
|
|
@@ -5825,7 +5852,7 @@ declare module ":s2sdk" {
|
|
|
5825
5852
|
/**
|
|
5826
5853
|
* @description Register callback to event.
|
|
5827
5854
|
*
|
|
5828
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5855
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnServerStartup_Register|Docs}
|
|
5829
5856
|
*
|
|
5830
5857
|
* @param callback Function callback.
|
|
5831
5858
|
*/
|
|
@@ -5834,7 +5861,7 @@ declare module ":s2sdk" {
|
|
|
5834
5861
|
/**
|
|
5835
5862
|
* @description Unregister callback to event.
|
|
5836
5863
|
*
|
|
5837
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5864
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnServerStartup_Unregister|Docs}
|
|
5838
5865
|
*
|
|
5839
5866
|
* @param callback Function callback.
|
|
5840
5867
|
*/
|
|
@@ -5843,7 +5870,7 @@ declare module ":s2sdk" {
|
|
|
5843
5870
|
/**
|
|
5844
5871
|
* @description Register callback to event.
|
|
5845
5872
|
*
|
|
5846
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5873
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnServerActivate_Register|Docs}
|
|
5847
5874
|
*
|
|
5848
5875
|
* @param callback Function callback.
|
|
5849
5876
|
*/
|
|
@@ -5852,7 +5879,7 @@ declare module ":s2sdk" {
|
|
|
5852
5879
|
/**
|
|
5853
5880
|
* @description Unregister callback to event.
|
|
5854
5881
|
*
|
|
5855
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5882
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnServerActivate_Unregister|Docs}
|
|
5856
5883
|
*
|
|
5857
5884
|
* @param callback Function callback.
|
|
5858
5885
|
*/
|
|
@@ -5861,7 +5888,7 @@ declare module ":s2sdk" {
|
|
|
5861
5888
|
/**
|
|
5862
5889
|
* @description Register callback to event.
|
|
5863
5890
|
*
|
|
5864
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5891
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnChangeLevel_Register|Docs}
|
|
5865
5892
|
*
|
|
5866
5893
|
* @param callback Function callback.
|
|
5867
5894
|
*/
|
|
@@ -5870,7 +5897,7 @@ declare module ":s2sdk" {
|
|
|
5870
5897
|
/**
|
|
5871
5898
|
* @description Unregister callback to event.
|
|
5872
5899
|
*
|
|
5873
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5900
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnChangeLevel_Unregister|Docs}
|
|
5874
5901
|
*
|
|
5875
5902
|
* @param callback Function callback.
|
|
5876
5903
|
*/
|
|
@@ -5879,7 +5906,7 @@ declare module ":s2sdk" {
|
|
|
5879
5906
|
/**
|
|
5880
5907
|
* @description Register callback to event.
|
|
5881
5908
|
*
|
|
5882
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5909
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnGameFrame_Register|Docs}
|
|
5883
5910
|
*
|
|
5884
5911
|
* @param callback Function callback.
|
|
5885
5912
|
*/
|
|
@@ -5888,7 +5915,7 @@ declare module ":s2sdk" {
|
|
|
5888
5915
|
/**
|
|
5889
5916
|
* @description Unregister callback to event.
|
|
5890
5917
|
*
|
|
5891
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5918
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnGameFrame_Unregister|Docs}
|
|
5892
5919
|
*
|
|
5893
5920
|
* @param callback Function callback.
|
|
5894
5921
|
*/
|
|
@@ -5897,7 +5924,7 @@ declare module ":s2sdk" {
|
|
|
5897
5924
|
/**
|
|
5898
5925
|
* @description Register callback to event.
|
|
5899
5926
|
*
|
|
5900
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5927
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnUpdateWhenNotInGame_Register|Docs}
|
|
5901
5928
|
*
|
|
5902
5929
|
* @param callback Function callback.
|
|
5903
5930
|
*/
|
|
@@ -5906,7 +5933,7 @@ declare module ":s2sdk" {
|
|
|
5906
5933
|
/**
|
|
5907
5934
|
* @description Unregister callback to event.
|
|
5908
5935
|
*
|
|
5909
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5936
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnUpdateWhenNotInGame_Unregister|Docs}
|
|
5910
5937
|
*
|
|
5911
5938
|
* @param callback Function callback.
|
|
5912
5939
|
*/
|
|
@@ -5915,7 +5942,7 @@ declare module ":s2sdk" {
|
|
|
5915
5942
|
/**
|
|
5916
5943
|
* @description Register callback to event.
|
|
5917
5944
|
*
|
|
5918
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5945
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnPreWorldUpdate_Register|Docs}
|
|
5919
5946
|
*
|
|
5920
5947
|
* @param callback Function callback.
|
|
5921
5948
|
*/
|
|
@@ -5924,7 +5951,7 @@ declare module ":s2sdk" {
|
|
|
5924
5951
|
/**
|
|
5925
5952
|
* @description Unregister callback to event.
|
|
5926
5953
|
*
|
|
5927
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5954
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-OnPreWorldUpdate_Unregister|Docs}
|
|
5928
5955
|
*
|
|
5929
5956
|
* @param callback Function callback.
|
|
5930
5957
|
*/
|
|
@@ -5933,7 +5960,7 @@ declare module ":s2sdk" {
|
|
|
5933
5960
|
/**
|
|
5934
5961
|
* @description Retrieves the pointer to the current game rules proxy instance.
|
|
5935
5962
|
*
|
|
5936
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5963
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameRulesProxy|Docs}
|
|
5937
5964
|
*
|
|
5938
5965
|
*
|
|
5939
5966
|
*/
|
|
@@ -5942,7 +5969,7 @@ declare module ":s2sdk" {
|
|
|
5942
5969
|
/**
|
|
5943
5970
|
* @description Retrieves the pointer to the current game rules instance.
|
|
5944
5971
|
*
|
|
5945
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5972
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetGameRules|Docs}
|
|
5946
5973
|
*
|
|
5947
5974
|
*
|
|
5948
5975
|
*/
|
|
@@ -5951,7 +5978,7 @@ declare module ":s2sdk" {
|
|
|
5951
5978
|
/**
|
|
5952
5979
|
* @description Forces the round to end with a specified reason and delay.
|
|
5953
5980
|
*
|
|
5954
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5981
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-TerminateRound|Docs}
|
|
5955
5982
|
*
|
|
5956
5983
|
* @param delay Time (in seconds) to delay before the next round starts.
|
|
5957
5984
|
* @param reason The reason for ending the round, defined by the CSRoundEndReason enum.
|
|
@@ -5961,7 +5988,7 @@ declare module ":s2sdk" {
|
|
|
5961
5988
|
/**
|
|
5962
5989
|
* @description Hooks a user message with a callback.
|
|
5963
5990
|
*
|
|
5964
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
5991
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-HookUserMessage|Docs}
|
|
5965
5992
|
*
|
|
5966
5993
|
* @param messageId The ID of the message to hook.
|
|
5967
5994
|
* @param callback The callback function to invoke when the message is received.
|
|
@@ -5972,7 +5999,7 @@ declare module ":s2sdk" {
|
|
|
5972
5999
|
/**
|
|
5973
6000
|
* @description Unhooks a previously hooked user message.
|
|
5974
6001
|
*
|
|
5975
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6002
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UnhookUserMessage|Docs}
|
|
5976
6003
|
*
|
|
5977
6004
|
* @param messageId The ID of the message to unhook.
|
|
5978
6005
|
* @param callback The callback function to remove.
|
|
@@ -5983,7 +6010,7 @@ declare module ":s2sdk" {
|
|
|
5983
6010
|
/**
|
|
5984
6011
|
* @description Creates a UserMessage from a serializable message.
|
|
5985
6012
|
*
|
|
5986
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6013
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageCreateFromSerializable|Docs}
|
|
5987
6014
|
*
|
|
5988
6015
|
* @param msgSerializable The serializable message.
|
|
5989
6016
|
* @param message The network message.
|
|
@@ -5994,7 +6021,7 @@ declare module ":s2sdk" {
|
|
|
5994
6021
|
/**
|
|
5995
6022
|
* @description Creates a UserMessage from a message name.
|
|
5996
6023
|
*
|
|
5997
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6024
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageCreateFromName|Docs}
|
|
5998
6025
|
*
|
|
5999
6026
|
* @param messageName The name of the message.
|
|
6000
6027
|
*/
|
|
@@ -6003,7 +6030,7 @@ declare module ":s2sdk" {
|
|
|
6003
6030
|
/**
|
|
6004
6031
|
* @description Creates a UserMessage from a message ID.
|
|
6005
6032
|
*
|
|
6006
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6033
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageCreateFromId|Docs}
|
|
6007
6034
|
*
|
|
6008
6035
|
* @param messageId The ID of the message.
|
|
6009
6036
|
*/
|
|
@@ -6012,7 +6039,7 @@ declare module ":s2sdk" {
|
|
|
6012
6039
|
/**
|
|
6013
6040
|
* @description Destroys a UserMessage and frees its memory.
|
|
6014
6041
|
*
|
|
6015
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6042
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageDestroy|Docs}
|
|
6016
6043
|
*
|
|
6017
6044
|
* @param userMessage The UserMessage to destroy.
|
|
6018
6045
|
*/
|
|
@@ -6021,7 +6048,7 @@ declare module ":s2sdk" {
|
|
|
6021
6048
|
/**
|
|
6022
6049
|
* @description Sends a UserMessage to the specified recipients.
|
|
6023
6050
|
*
|
|
6024
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6051
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageSend|Docs}
|
|
6025
6052
|
*
|
|
6026
6053
|
* @param userMessage The UserMessage to send.
|
|
6027
6054
|
*/
|
|
@@ -6030,7 +6057,7 @@ declare module ":s2sdk" {
|
|
|
6030
6057
|
/**
|
|
6031
6058
|
* @description Gets the name of the message.
|
|
6032
6059
|
*
|
|
6033
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6060
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageGetMessageName|Docs}
|
|
6034
6061
|
*
|
|
6035
6062
|
* @param userMessage The UserMessage instance.
|
|
6036
6063
|
*/
|
|
@@ -6039,7 +6066,7 @@ declare module ":s2sdk" {
|
|
|
6039
6066
|
/**
|
|
6040
6067
|
* @description Gets the ID of the message.
|
|
6041
6068
|
*
|
|
6042
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6069
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageGetMessageID|Docs}
|
|
6043
6070
|
*
|
|
6044
6071
|
* @param userMessage The UserMessage instance.
|
|
6045
6072
|
*/
|
|
@@ -6048,7 +6075,7 @@ declare module ":s2sdk" {
|
|
|
6048
6075
|
/**
|
|
6049
6076
|
* @description Checks if the message has a specific field.
|
|
6050
6077
|
*
|
|
6051
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6078
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageHasField|Docs}
|
|
6052
6079
|
*
|
|
6053
6080
|
* @param userMessage The UserMessage instance.
|
|
6054
6081
|
* @param fieldName The name of the field to check.
|
|
@@ -6058,7 +6085,7 @@ declare module ":s2sdk" {
|
|
|
6058
6085
|
/**
|
|
6059
6086
|
* @description Gets the protobuf message associated with the UserMessage.
|
|
6060
6087
|
*
|
|
6061
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6088
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageGetProtobufMessage|Docs}
|
|
6062
6089
|
*
|
|
6063
6090
|
* @param userMessage The UserMessage instance.
|
|
6064
6091
|
*/
|
|
@@ -6067,7 +6094,7 @@ declare module ":s2sdk" {
|
|
|
6067
6094
|
/**
|
|
6068
6095
|
* @description Gets the serializable message associated with the UserMessage.
|
|
6069
6096
|
*
|
|
6070
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6097
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageGetSerializableMessage|Docs}
|
|
6071
6098
|
*
|
|
6072
6099
|
* @param userMessage The UserMessage instance.
|
|
6073
6100
|
*/
|
|
@@ -6076,7 +6103,7 @@ declare module ":s2sdk" {
|
|
|
6076
6103
|
/**
|
|
6077
6104
|
* @description Finds a message ID by its name.
|
|
6078
6105
|
*
|
|
6079
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6106
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageFindMessageIdByName|Docs}
|
|
6080
6107
|
*
|
|
6081
6108
|
* @param messageName The name of the message.
|
|
6082
6109
|
*/
|
|
@@ -6085,7 +6112,7 @@ declare module ":s2sdk" {
|
|
|
6085
6112
|
/**
|
|
6086
6113
|
* @description Gets the recipient mask for the UserMessage.
|
|
6087
6114
|
*
|
|
6088
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6115
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageGetRecipientMask|Docs}
|
|
6089
6116
|
*
|
|
6090
6117
|
* @param userMessage The UserMessage instance.
|
|
6091
6118
|
*/
|
|
@@ -6094,7 +6121,7 @@ declare module ":s2sdk" {
|
|
|
6094
6121
|
/**
|
|
6095
6122
|
* @description Sets the recipient mask for the UserMessage.
|
|
6096
6123
|
*
|
|
6097
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6124
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageSetRecipientMask|Docs}
|
|
6098
6125
|
*
|
|
6099
6126
|
* @param userMessage The UserMessage instance.
|
|
6100
6127
|
* @param mask The recipient mask to set.
|
|
@@ -6104,7 +6131,7 @@ declare module ":s2sdk" {
|
|
|
6104
6131
|
/**
|
|
6105
6132
|
* @description Gets a nested message from a field in the UserMessage.
|
|
6106
6133
|
*
|
|
6107
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6134
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageGetMessage|Docs}
|
|
6108
6135
|
*
|
|
6109
6136
|
* @param userMessage The UserMessage instance.
|
|
6110
6137
|
* @param fieldName The name of the field.
|
|
@@ -6115,7 +6142,7 @@ declare module ":s2sdk" {
|
|
|
6115
6142
|
/**
|
|
6116
6143
|
* @description Gets a repeated nested message from a field in the UserMessage.
|
|
6117
6144
|
*
|
|
6118
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6145
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageGetRepeatedMessage|Docs}
|
|
6119
6146
|
*
|
|
6120
6147
|
* @param userMessage The UserMessage instance.
|
|
6121
6148
|
* @param fieldName The name of the field.
|
|
@@ -6127,7 +6154,7 @@ declare module ":s2sdk" {
|
|
|
6127
6154
|
/**
|
|
6128
6155
|
* @description Adds a nested message to a repeated field in the UserMessage.
|
|
6129
6156
|
*
|
|
6130
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6157
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageAddMessage|Docs}
|
|
6131
6158
|
*
|
|
6132
6159
|
* @param userMessage The UserMessage instance.
|
|
6133
6160
|
* @param fieldName The name of the field.
|
|
@@ -6138,7 +6165,7 @@ declare module ":s2sdk" {
|
|
|
6138
6165
|
/**
|
|
6139
6166
|
* @description Gets the count of repeated fields in a field of the UserMessage.
|
|
6140
6167
|
*
|
|
6141
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6168
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageGetRepeatedFieldCount|Docs}
|
|
6142
6169
|
*
|
|
6143
6170
|
* @param userMessage The UserMessage instance.
|
|
6144
6171
|
* @param fieldName The name of the field.
|
|
@@ -6148,7 +6175,7 @@ declare module ":s2sdk" {
|
|
|
6148
6175
|
/**
|
|
6149
6176
|
* @description Removes a value from a repeated field in the UserMessage.
|
|
6150
6177
|
*
|
|
6151
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6178
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageRemoveRepeatedFieldValue|Docs}
|
|
6152
6179
|
*
|
|
6153
6180
|
* @param userMessage The UserMessage instance.
|
|
6154
6181
|
* @param fieldName The name of the field.
|
|
@@ -6159,7 +6186,7 @@ declare module ":s2sdk" {
|
|
|
6159
6186
|
/**
|
|
6160
6187
|
* @description Gets the debug string representation of the UserMessage.
|
|
6161
6188
|
*
|
|
6162
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6189
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-UserMessageGetDebugString|Docs}
|
|
6163
6190
|
*
|
|
6164
6191
|
* @param userMessage The UserMessage instance.
|
|
6165
6192
|
*/
|
|
@@ -6168,7 +6195,7 @@ declare module ":s2sdk" {
|
|
|
6168
6195
|
/**
|
|
6169
6196
|
* @description Reads an enum value from a UserMessage.
|
|
6170
6197
|
*
|
|
6171
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6198
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadEnum|Docs}
|
|
6172
6199
|
*
|
|
6173
6200
|
* @param userMessage Pointer to the UserMessage object.
|
|
6174
6201
|
* @param fieldName Name of the field to read.
|
|
@@ -6179,7 +6206,7 @@ declare module ":s2sdk" {
|
|
|
6179
6206
|
/**
|
|
6180
6207
|
* @description Reads a 32-bit integer from a UserMessage.
|
|
6181
6208
|
*
|
|
6182
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6209
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadInt32|Docs}
|
|
6183
6210
|
*
|
|
6184
6211
|
* @param userMessage Pointer to the UserMessage object.
|
|
6185
6212
|
* @param fieldName Name of the field to read.
|
|
@@ -6190,7 +6217,7 @@ declare module ":s2sdk" {
|
|
|
6190
6217
|
/**
|
|
6191
6218
|
* @description Reads a 64-bit integer from a UserMessage.
|
|
6192
6219
|
*
|
|
6193
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6220
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadInt64|Docs}
|
|
6194
6221
|
*
|
|
6195
6222
|
* @param userMessage Pointer to the UserMessage object.
|
|
6196
6223
|
* @param fieldName Name of the field to read.
|
|
@@ -6201,7 +6228,7 @@ declare module ":s2sdk" {
|
|
|
6201
6228
|
/**
|
|
6202
6229
|
* @description Reads an unsigned 32-bit integer from a UserMessage.
|
|
6203
6230
|
*
|
|
6204
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6231
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadUInt32|Docs}
|
|
6205
6232
|
*
|
|
6206
6233
|
* @param userMessage Pointer to the UserMessage object.
|
|
6207
6234
|
* @param fieldName Name of the field to read.
|
|
@@ -6212,7 +6239,7 @@ declare module ":s2sdk" {
|
|
|
6212
6239
|
/**
|
|
6213
6240
|
* @description Reads an unsigned 64-bit integer from a UserMessage.
|
|
6214
6241
|
*
|
|
6215
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6242
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadUInt64|Docs}
|
|
6216
6243
|
*
|
|
6217
6244
|
* @param userMessage Pointer to the UserMessage object.
|
|
6218
6245
|
* @param fieldName Name of the field to read.
|
|
@@ -6223,7 +6250,7 @@ declare module ":s2sdk" {
|
|
|
6223
6250
|
/**
|
|
6224
6251
|
* @description Reads a floating-point value from a UserMessage.
|
|
6225
6252
|
*
|
|
6226
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6253
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadFloat|Docs}
|
|
6227
6254
|
*
|
|
6228
6255
|
* @param userMessage Pointer to the UserMessage object.
|
|
6229
6256
|
* @param fieldName Name of the field to read.
|
|
@@ -6234,7 +6261,7 @@ declare module ":s2sdk" {
|
|
|
6234
6261
|
/**
|
|
6235
6262
|
* @description Reads a double-precision floating-point value from a UserMessage.
|
|
6236
6263
|
*
|
|
6237
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6264
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadDouble|Docs}
|
|
6238
6265
|
*
|
|
6239
6266
|
* @param userMessage Pointer to the UserMessage object.
|
|
6240
6267
|
* @param fieldName Name of the field to read.
|
|
@@ -6245,7 +6272,7 @@ declare module ":s2sdk" {
|
|
|
6245
6272
|
/**
|
|
6246
6273
|
* @description Reads a boolean value from a UserMessage.
|
|
6247
6274
|
*
|
|
6248
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6275
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadBool|Docs}
|
|
6249
6276
|
*
|
|
6250
6277
|
* @param userMessage Pointer to the UserMessage object.
|
|
6251
6278
|
* @param fieldName Name of the field to read.
|
|
@@ -6256,7 +6283,7 @@ declare module ":s2sdk" {
|
|
|
6256
6283
|
/**
|
|
6257
6284
|
* @description Reads a string from a UserMessage.
|
|
6258
6285
|
*
|
|
6259
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6286
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadString|Docs}
|
|
6260
6287
|
*
|
|
6261
6288
|
* @param userMessage Pointer to the UserMessage object.
|
|
6262
6289
|
* @param fieldName Name of the field to read.
|
|
@@ -6267,7 +6294,7 @@ declare module ":s2sdk" {
|
|
|
6267
6294
|
/**
|
|
6268
6295
|
* @description Reads a color value from a UserMessage.
|
|
6269
6296
|
*
|
|
6270
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6297
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadColor|Docs}
|
|
6271
6298
|
*
|
|
6272
6299
|
* @param userMessage Pointer to the UserMessage object.
|
|
6273
6300
|
* @param fieldName Name of the field to read.
|
|
@@ -6278,7 +6305,7 @@ declare module ":s2sdk" {
|
|
|
6278
6305
|
/**
|
|
6279
6306
|
* @description Reads a 2D vector from a UserMessage.
|
|
6280
6307
|
*
|
|
6281
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6308
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadVector2|Docs}
|
|
6282
6309
|
*
|
|
6283
6310
|
* @param userMessage Pointer to the UserMessage object.
|
|
6284
6311
|
* @param fieldName Name of the field to read.
|
|
@@ -6289,7 +6316,7 @@ declare module ":s2sdk" {
|
|
|
6289
6316
|
/**
|
|
6290
6317
|
* @description Reads a 3D vector from a UserMessage.
|
|
6291
6318
|
*
|
|
6292
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6319
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadVector3|Docs}
|
|
6293
6320
|
*
|
|
6294
6321
|
* @param userMessage Pointer to the UserMessage object.
|
|
6295
6322
|
* @param fieldName Name of the field to read.
|
|
@@ -6300,7 +6327,7 @@ declare module ":s2sdk" {
|
|
|
6300
6327
|
/**
|
|
6301
6328
|
* @description Reads a QAngle (rotation vector) from a UserMessage.
|
|
6302
6329
|
*
|
|
6303
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6330
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbReadQAngle|Docs}
|
|
6304
6331
|
*
|
|
6305
6332
|
* @param userMessage Pointer to the UserMessage object.
|
|
6306
6333
|
* @param fieldName Name of the field to read.
|
|
@@ -6311,7 +6338,7 @@ declare module ":s2sdk" {
|
|
|
6311
6338
|
/**
|
|
6312
6339
|
* @description Gets a enum value from a field in the UserMessage.
|
|
6313
6340
|
*
|
|
6314
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6341
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetEnum|Docs}
|
|
6315
6342
|
*
|
|
6316
6343
|
* @param userMessage The UserMessage instance.
|
|
6317
6344
|
* @param fieldName The name of the field.
|
|
@@ -6322,7 +6349,7 @@ declare module ":s2sdk" {
|
|
|
6322
6349
|
/**
|
|
6323
6350
|
* @description Sets a enum value for a field in the UserMessage.
|
|
6324
6351
|
*
|
|
6325
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6352
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetEnum|Docs}
|
|
6326
6353
|
*
|
|
6327
6354
|
* @param userMessage The UserMessage instance.
|
|
6328
6355
|
* @param fieldName The name of the field.
|
|
@@ -6333,7 +6360,7 @@ declare module ":s2sdk" {
|
|
|
6333
6360
|
/**
|
|
6334
6361
|
* @description Gets a 32-bit integer value from a field in the UserMessage.
|
|
6335
6362
|
*
|
|
6336
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6363
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetInt32|Docs}
|
|
6337
6364
|
*
|
|
6338
6365
|
* @param userMessage The UserMessage instance.
|
|
6339
6366
|
* @param fieldName The name of the field.
|
|
@@ -6344,7 +6371,7 @@ declare module ":s2sdk" {
|
|
|
6344
6371
|
/**
|
|
6345
6372
|
* @description Sets a 32-bit integer value for a field in the UserMessage.
|
|
6346
6373
|
*
|
|
6347
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6374
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetInt32|Docs}
|
|
6348
6375
|
*
|
|
6349
6376
|
* @param userMessage The UserMessage instance.
|
|
6350
6377
|
* @param fieldName The name of the field.
|
|
@@ -6355,7 +6382,7 @@ declare module ":s2sdk" {
|
|
|
6355
6382
|
/**
|
|
6356
6383
|
* @description Gets a 64-bit integer value from a field in the UserMessage.
|
|
6357
6384
|
*
|
|
6358
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6385
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetInt64|Docs}
|
|
6359
6386
|
*
|
|
6360
6387
|
* @param userMessage The UserMessage instance.
|
|
6361
6388
|
* @param fieldName The name of the field.
|
|
@@ -6366,7 +6393,7 @@ declare module ":s2sdk" {
|
|
|
6366
6393
|
/**
|
|
6367
6394
|
* @description Sets a 64-bit integer value for a field in the UserMessage.
|
|
6368
6395
|
*
|
|
6369
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6396
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetInt64|Docs}
|
|
6370
6397
|
*
|
|
6371
6398
|
* @param userMessage The UserMessage instance.
|
|
6372
6399
|
* @param fieldName The name of the field.
|
|
@@ -6377,7 +6404,7 @@ declare module ":s2sdk" {
|
|
|
6377
6404
|
/**
|
|
6378
6405
|
* @description Gets an unsigned 32-bit integer value from a field in the UserMessage.
|
|
6379
6406
|
*
|
|
6380
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6407
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetUInt32|Docs}
|
|
6381
6408
|
*
|
|
6382
6409
|
* @param userMessage The UserMessage instance.
|
|
6383
6410
|
* @param fieldName The name of the field.
|
|
@@ -6388,7 +6415,7 @@ declare module ":s2sdk" {
|
|
|
6388
6415
|
/**
|
|
6389
6416
|
* @description Sets an unsigned 32-bit integer value for a field in the UserMessage.
|
|
6390
6417
|
*
|
|
6391
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6418
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetUInt32|Docs}
|
|
6392
6419
|
*
|
|
6393
6420
|
* @param userMessage The UserMessage instance.
|
|
6394
6421
|
* @param fieldName The name of the field.
|
|
@@ -6399,7 +6426,7 @@ declare module ":s2sdk" {
|
|
|
6399
6426
|
/**
|
|
6400
6427
|
* @description Gets an unsigned 64-bit integer value from a field in the UserMessage.
|
|
6401
6428
|
*
|
|
6402
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6429
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetUInt64|Docs}
|
|
6403
6430
|
*
|
|
6404
6431
|
* @param userMessage The UserMessage instance.
|
|
6405
6432
|
* @param fieldName The name of the field.
|
|
@@ -6410,7 +6437,7 @@ declare module ":s2sdk" {
|
|
|
6410
6437
|
/**
|
|
6411
6438
|
* @description Sets an unsigned 64-bit integer value for a field in the UserMessage.
|
|
6412
6439
|
*
|
|
6413
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6440
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetUInt64|Docs}
|
|
6414
6441
|
*
|
|
6415
6442
|
* @param userMessage The UserMessage instance.
|
|
6416
6443
|
* @param fieldName The name of the field.
|
|
@@ -6421,7 +6448,7 @@ declare module ":s2sdk" {
|
|
|
6421
6448
|
/**
|
|
6422
6449
|
* @description Gets a bool value from a field in the UserMessage.
|
|
6423
6450
|
*
|
|
6424
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6451
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetBool|Docs}
|
|
6425
6452
|
*
|
|
6426
6453
|
* @param userMessage The UserMessage instance.
|
|
6427
6454
|
* @param fieldName The name of the field.
|
|
@@ -6432,7 +6459,7 @@ declare module ":s2sdk" {
|
|
|
6432
6459
|
/**
|
|
6433
6460
|
* @description Sets a bool value for a field in the UserMessage.
|
|
6434
6461
|
*
|
|
6435
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6462
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetBool|Docs}
|
|
6436
6463
|
*
|
|
6437
6464
|
* @param userMessage The UserMessage instance.
|
|
6438
6465
|
* @param fieldName The name of the field.
|
|
@@ -6443,7 +6470,7 @@ declare module ":s2sdk" {
|
|
|
6443
6470
|
/**
|
|
6444
6471
|
* @description Gets a float value from a field in the UserMessage.
|
|
6445
6472
|
*
|
|
6446
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6473
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetFloat|Docs}
|
|
6447
6474
|
*
|
|
6448
6475
|
* @param userMessage The UserMessage instance.
|
|
6449
6476
|
* @param fieldName The name of the field.
|
|
@@ -6454,7 +6481,7 @@ declare module ":s2sdk" {
|
|
|
6454
6481
|
/**
|
|
6455
6482
|
* @description Sets a float value for a field in the UserMessage.
|
|
6456
6483
|
*
|
|
6457
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6484
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetFloat|Docs}
|
|
6458
6485
|
*
|
|
6459
6486
|
* @param userMessage The UserMessage instance.
|
|
6460
6487
|
* @param fieldName The name of the field.
|
|
@@ -6465,7 +6492,7 @@ declare module ":s2sdk" {
|
|
|
6465
6492
|
/**
|
|
6466
6493
|
* @description Gets a double value from a field in the UserMessage.
|
|
6467
6494
|
*
|
|
6468
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6495
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetDouble|Docs}
|
|
6469
6496
|
*
|
|
6470
6497
|
* @param userMessage The UserMessage instance.
|
|
6471
6498
|
* @param fieldName The name of the field.
|
|
@@ -6476,7 +6503,7 @@ declare module ":s2sdk" {
|
|
|
6476
6503
|
/**
|
|
6477
6504
|
* @description Sets a double value for a field in the UserMessage.
|
|
6478
6505
|
*
|
|
6479
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6506
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetDouble|Docs}
|
|
6480
6507
|
*
|
|
6481
6508
|
* @param userMessage The UserMessage instance.
|
|
6482
6509
|
* @param fieldName The name of the field.
|
|
@@ -6487,7 +6514,7 @@ declare module ":s2sdk" {
|
|
|
6487
6514
|
/**
|
|
6488
6515
|
* @description Gets a string value from a field in the UserMessage.
|
|
6489
6516
|
*
|
|
6490
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6517
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetString|Docs}
|
|
6491
6518
|
*
|
|
6492
6519
|
* @param userMessage The UserMessage instance.
|
|
6493
6520
|
* @param fieldName The name of the field.
|
|
@@ -6498,7 +6525,7 @@ declare module ":s2sdk" {
|
|
|
6498
6525
|
/**
|
|
6499
6526
|
* @description Sets a string value for a field in the UserMessage.
|
|
6500
6527
|
*
|
|
6501
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6528
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetString|Docs}
|
|
6502
6529
|
*
|
|
6503
6530
|
* @param userMessage The UserMessage instance.
|
|
6504
6531
|
* @param fieldName The name of the field.
|
|
@@ -6509,7 +6536,7 @@ declare module ":s2sdk" {
|
|
|
6509
6536
|
/**
|
|
6510
6537
|
* @description Gets a color value from a field in the UserMessage.
|
|
6511
6538
|
*
|
|
6512
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6539
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetColor|Docs}
|
|
6513
6540
|
*
|
|
6514
6541
|
* @param userMessage The UserMessage instance.
|
|
6515
6542
|
* @param fieldName The name of the field.
|
|
@@ -6520,7 +6547,7 @@ declare module ":s2sdk" {
|
|
|
6520
6547
|
/**
|
|
6521
6548
|
* @description Sets a color value for a field in the UserMessage.
|
|
6522
6549
|
*
|
|
6523
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6550
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetColor|Docs}
|
|
6524
6551
|
*
|
|
6525
6552
|
* @param userMessage The UserMessage instance.
|
|
6526
6553
|
* @param fieldName The name of the field.
|
|
@@ -6531,7 +6558,7 @@ declare module ":s2sdk" {
|
|
|
6531
6558
|
/**
|
|
6532
6559
|
* @description Gets a Vector2 value from a field in the UserMessage.
|
|
6533
6560
|
*
|
|
6534
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6561
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetVector2|Docs}
|
|
6535
6562
|
*
|
|
6536
6563
|
* @param userMessage The UserMessage instance.
|
|
6537
6564
|
* @param fieldName The name of the field.
|
|
@@ -6542,7 +6569,7 @@ declare module ":s2sdk" {
|
|
|
6542
6569
|
/**
|
|
6543
6570
|
* @description Sets a Vector2 value for a field in the UserMessage.
|
|
6544
6571
|
*
|
|
6545
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6572
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetVector2|Docs}
|
|
6546
6573
|
*
|
|
6547
6574
|
* @param userMessage The UserMessage instance.
|
|
6548
6575
|
* @param fieldName The name of the field.
|
|
@@ -6553,7 +6580,7 @@ declare module ":s2sdk" {
|
|
|
6553
6580
|
/**
|
|
6554
6581
|
* @description Gets a Vector3 value from a field in the UserMessage.
|
|
6555
6582
|
*
|
|
6556
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6583
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetVector3|Docs}
|
|
6557
6584
|
*
|
|
6558
6585
|
* @param userMessage The UserMessage instance.
|
|
6559
6586
|
* @param fieldName The name of the field.
|
|
@@ -6564,7 +6591,7 @@ declare module ":s2sdk" {
|
|
|
6564
6591
|
/**
|
|
6565
6592
|
* @description Sets a Vector3 value for a field in the UserMessage.
|
|
6566
6593
|
*
|
|
6567
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6594
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetVector3|Docs}
|
|
6568
6595
|
*
|
|
6569
6596
|
* @param userMessage The UserMessage instance.
|
|
6570
6597
|
* @param fieldName The name of the field.
|
|
@@ -6575,7 +6602,7 @@ declare module ":s2sdk" {
|
|
|
6575
6602
|
/**
|
|
6576
6603
|
* @description Gets a QAngle value from a field in the UserMessage.
|
|
6577
6604
|
*
|
|
6578
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6605
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetQAngle|Docs}
|
|
6579
6606
|
*
|
|
6580
6607
|
* @param userMessage The UserMessage instance.
|
|
6581
6608
|
* @param fieldName The name of the field.
|
|
@@ -6586,7 +6613,7 @@ declare module ":s2sdk" {
|
|
|
6586
6613
|
/**
|
|
6587
6614
|
* @description Sets a QAngle value for a field in the UserMessage.
|
|
6588
6615
|
*
|
|
6589
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6616
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetQAngle|Docs}
|
|
6590
6617
|
*
|
|
6591
6618
|
* @param userMessage The UserMessage instance.
|
|
6592
6619
|
* @param fieldName The name of the field.
|
|
@@ -6597,7 +6624,7 @@ declare module ":s2sdk" {
|
|
|
6597
6624
|
/**
|
|
6598
6625
|
* @description Gets a repeated enum value from a field in the UserMessage.
|
|
6599
6626
|
*
|
|
6600
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6627
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedEnum|Docs}
|
|
6601
6628
|
*
|
|
6602
6629
|
* @param userMessage The UserMessage instance.
|
|
6603
6630
|
* @param fieldName The name of the field.
|
|
@@ -6609,7 +6636,7 @@ declare module ":s2sdk" {
|
|
|
6609
6636
|
/**
|
|
6610
6637
|
* @description Sets a repeated enum value for a field in the UserMessage.
|
|
6611
6638
|
*
|
|
6612
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6639
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedEnum|Docs}
|
|
6613
6640
|
*
|
|
6614
6641
|
* @param userMessage The UserMessage instance.
|
|
6615
6642
|
* @param fieldName The name of the field.
|
|
@@ -6621,7 +6648,7 @@ declare module ":s2sdk" {
|
|
|
6621
6648
|
/**
|
|
6622
6649
|
* @description Adds a enum value to a repeated field in the UserMessage.
|
|
6623
6650
|
*
|
|
6624
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6651
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddEnum|Docs}
|
|
6625
6652
|
*
|
|
6626
6653
|
* @param userMessage The UserMessage instance.
|
|
6627
6654
|
* @param fieldName The name of the field.
|
|
@@ -6632,7 +6659,7 @@ declare module ":s2sdk" {
|
|
|
6632
6659
|
/**
|
|
6633
6660
|
* @description Gets a repeated int32_t value from a field in the UserMessage.
|
|
6634
6661
|
*
|
|
6635
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6662
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedInt32|Docs}
|
|
6636
6663
|
*
|
|
6637
6664
|
* @param userMessage The UserMessage instance.
|
|
6638
6665
|
* @param fieldName The name of the field.
|
|
@@ -6644,7 +6671,7 @@ declare module ":s2sdk" {
|
|
|
6644
6671
|
/**
|
|
6645
6672
|
* @description Sets a repeated int32_t value for a field in the UserMessage.
|
|
6646
6673
|
*
|
|
6647
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6674
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedInt32|Docs}
|
|
6648
6675
|
*
|
|
6649
6676
|
* @param userMessage The UserMessage instance.
|
|
6650
6677
|
* @param fieldName The name of the field.
|
|
@@ -6656,7 +6683,7 @@ declare module ":s2sdk" {
|
|
|
6656
6683
|
/**
|
|
6657
6684
|
* @description Adds a 32-bit integer value to a repeated field in the UserMessage.
|
|
6658
6685
|
*
|
|
6659
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6686
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddInt32|Docs}
|
|
6660
6687
|
*
|
|
6661
6688
|
* @param userMessage The UserMessage instance.
|
|
6662
6689
|
* @param fieldName The name of the field.
|
|
@@ -6667,7 +6694,7 @@ declare module ":s2sdk" {
|
|
|
6667
6694
|
/**
|
|
6668
6695
|
* @description Gets a repeated int64_t value from a field in the UserMessage.
|
|
6669
6696
|
*
|
|
6670
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6697
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedInt64|Docs}
|
|
6671
6698
|
*
|
|
6672
6699
|
* @param userMessage The UserMessage instance.
|
|
6673
6700
|
* @param fieldName The name of the field.
|
|
@@ -6679,7 +6706,7 @@ declare module ":s2sdk" {
|
|
|
6679
6706
|
/**
|
|
6680
6707
|
* @description Sets a repeated int64_t value for a field in the UserMessage.
|
|
6681
6708
|
*
|
|
6682
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6709
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedInt64|Docs}
|
|
6683
6710
|
*
|
|
6684
6711
|
* @param userMessage The UserMessage instance.
|
|
6685
6712
|
* @param fieldName The name of the field.
|
|
@@ -6691,7 +6718,7 @@ declare module ":s2sdk" {
|
|
|
6691
6718
|
/**
|
|
6692
6719
|
* @description Adds a 64-bit integer value to a repeated field in the UserMessage.
|
|
6693
6720
|
*
|
|
6694
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6721
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddInt64|Docs}
|
|
6695
6722
|
*
|
|
6696
6723
|
* @param userMessage The UserMessage instance.
|
|
6697
6724
|
* @param fieldName The name of the field.
|
|
@@ -6702,7 +6729,7 @@ declare module ":s2sdk" {
|
|
|
6702
6729
|
/**
|
|
6703
6730
|
* @description Gets a repeated uint32_t value from a field in the UserMessage.
|
|
6704
6731
|
*
|
|
6705
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6732
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedUInt32|Docs}
|
|
6706
6733
|
*
|
|
6707
6734
|
* @param userMessage The UserMessage instance.
|
|
6708
6735
|
* @param fieldName The name of the field.
|
|
@@ -6714,7 +6741,7 @@ declare module ":s2sdk" {
|
|
|
6714
6741
|
/**
|
|
6715
6742
|
* @description Sets a repeated uint32_t value for a field in the UserMessage.
|
|
6716
6743
|
*
|
|
6717
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6744
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedUInt32|Docs}
|
|
6718
6745
|
*
|
|
6719
6746
|
* @param userMessage The UserMessage instance.
|
|
6720
6747
|
* @param fieldName The name of the field.
|
|
@@ -6726,7 +6753,7 @@ declare module ":s2sdk" {
|
|
|
6726
6753
|
/**
|
|
6727
6754
|
* @description Adds an unsigned 32-bit integer value to a repeated field in the UserMessage.
|
|
6728
6755
|
*
|
|
6729
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6756
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddUInt32|Docs}
|
|
6730
6757
|
*
|
|
6731
6758
|
* @param userMessage The UserMessage instance.
|
|
6732
6759
|
* @param fieldName The name of the field.
|
|
@@ -6737,7 +6764,7 @@ declare module ":s2sdk" {
|
|
|
6737
6764
|
/**
|
|
6738
6765
|
* @description Gets a repeated uint64_t value from a field in the UserMessage.
|
|
6739
6766
|
*
|
|
6740
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6767
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedUInt64|Docs}
|
|
6741
6768
|
*
|
|
6742
6769
|
* @param userMessage The UserMessage instance.
|
|
6743
6770
|
* @param fieldName The name of the field.
|
|
@@ -6749,7 +6776,7 @@ declare module ":s2sdk" {
|
|
|
6749
6776
|
/**
|
|
6750
6777
|
* @description Sets a repeated uint64_t value for a field in the UserMessage.
|
|
6751
6778
|
*
|
|
6752
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6779
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedUInt64|Docs}
|
|
6753
6780
|
*
|
|
6754
6781
|
* @param userMessage The UserMessage instance.
|
|
6755
6782
|
* @param fieldName The name of the field.
|
|
@@ -6761,7 +6788,7 @@ declare module ":s2sdk" {
|
|
|
6761
6788
|
/**
|
|
6762
6789
|
* @description Adds an unsigned 64-bit integer value to a repeated field in the UserMessage.
|
|
6763
6790
|
*
|
|
6764
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6791
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddUInt64|Docs}
|
|
6765
6792
|
*
|
|
6766
6793
|
* @param userMessage The UserMessage instance.
|
|
6767
6794
|
* @param fieldName The name of the field.
|
|
@@ -6772,7 +6799,7 @@ declare module ":s2sdk" {
|
|
|
6772
6799
|
/**
|
|
6773
6800
|
* @description Gets a repeated bool value from a field in the UserMessage.
|
|
6774
6801
|
*
|
|
6775
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6802
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedBool|Docs}
|
|
6776
6803
|
*
|
|
6777
6804
|
* @param userMessage The UserMessage instance.
|
|
6778
6805
|
* @param fieldName The name of the field.
|
|
@@ -6784,7 +6811,7 @@ declare module ":s2sdk" {
|
|
|
6784
6811
|
/**
|
|
6785
6812
|
* @description Sets a repeated bool value for a field in the UserMessage.
|
|
6786
6813
|
*
|
|
6787
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6814
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedBool|Docs}
|
|
6788
6815
|
*
|
|
6789
6816
|
* @param userMessage The UserMessage instance.
|
|
6790
6817
|
* @param fieldName The name of the field.
|
|
@@ -6796,7 +6823,7 @@ declare module ":s2sdk" {
|
|
|
6796
6823
|
/**
|
|
6797
6824
|
* @description Adds a bool value to a repeated field in the UserMessage.
|
|
6798
6825
|
*
|
|
6799
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6826
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddBool|Docs}
|
|
6800
6827
|
*
|
|
6801
6828
|
* @param userMessage The UserMessage instance.
|
|
6802
6829
|
* @param fieldName The name of the field.
|
|
@@ -6807,7 +6834,7 @@ declare module ":s2sdk" {
|
|
|
6807
6834
|
/**
|
|
6808
6835
|
* @description Gets a repeated float value from a field in the UserMessage.
|
|
6809
6836
|
*
|
|
6810
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6837
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedFloat|Docs}
|
|
6811
6838
|
*
|
|
6812
6839
|
* @param userMessage The UserMessage instance.
|
|
6813
6840
|
* @param fieldName The name of the field.
|
|
@@ -6819,7 +6846,7 @@ declare module ":s2sdk" {
|
|
|
6819
6846
|
/**
|
|
6820
6847
|
* @description Sets a repeated float value for a field in the UserMessage.
|
|
6821
6848
|
*
|
|
6822
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6849
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedFloat|Docs}
|
|
6823
6850
|
*
|
|
6824
6851
|
* @param userMessage The UserMessage instance.
|
|
6825
6852
|
* @param fieldName The name of the field.
|
|
@@ -6831,7 +6858,7 @@ declare module ":s2sdk" {
|
|
|
6831
6858
|
/**
|
|
6832
6859
|
* @description Adds a float value to a repeated field in the UserMessage.
|
|
6833
6860
|
*
|
|
6834
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6861
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddFloat|Docs}
|
|
6835
6862
|
*
|
|
6836
6863
|
* @param userMessage The UserMessage instance.
|
|
6837
6864
|
* @param fieldName The name of the field.
|
|
@@ -6842,7 +6869,7 @@ declare module ":s2sdk" {
|
|
|
6842
6869
|
/**
|
|
6843
6870
|
* @description Gets a repeated double value from a field in the UserMessage.
|
|
6844
6871
|
*
|
|
6845
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6872
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedDouble|Docs}
|
|
6846
6873
|
*
|
|
6847
6874
|
* @param userMessage The UserMessage instance.
|
|
6848
6875
|
* @param fieldName The name of the field.
|
|
@@ -6854,7 +6881,7 @@ declare module ":s2sdk" {
|
|
|
6854
6881
|
/**
|
|
6855
6882
|
* @description Sets a repeated double value for a field in the UserMessage.
|
|
6856
6883
|
*
|
|
6857
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6884
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedDouble|Docs}
|
|
6858
6885
|
*
|
|
6859
6886
|
* @param userMessage The UserMessage instance.
|
|
6860
6887
|
* @param fieldName The name of the field.
|
|
@@ -6866,7 +6893,7 @@ declare module ":s2sdk" {
|
|
|
6866
6893
|
/**
|
|
6867
6894
|
* @description Adds a double value to a repeated field in the UserMessage.
|
|
6868
6895
|
*
|
|
6869
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6896
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddDouble|Docs}
|
|
6870
6897
|
*
|
|
6871
6898
|
* @param userMessage The UserMessage instance.
|
|
6872
6899
|
* @param fieldName The name of the field.
|
|
@@ -6877,7 +6904,7 @@ declare module ":s2sdk" {
|
|
|
6877
6904
|
/**
|
|
6878
6905
|
* @description Gets a repeated string value from a field in the UserMessage.
|
|
6879
6906
|
*
|
|
6880
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6907
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedString|Docs}
|
|
6881
6908
|
*
|
|
6882
6909
|
* @param userMessage The UserMessage instance.
|
|
6883
6910
|
* @param fieldName The name of the field.
|
|
@@ -6889,7 +6916,7 @@ declare module ":s2sdk" {
|
|
|
6889
6916
|
/**
|
|
6890
6917
|
* @description Sets a repeated string value for a field in the UserMessage.
|
|
6891
6918
|
*
|
|
6892
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6919
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedString|Docs}
|
|
6893
6920
|
*
|
|
6894
6921
|
* @param userMessage The UserMessage instance.
|
|
6895
6922
|
* @param fieldName The name of the field.
|
|
@@ -6901,7 +6928,7 @@ declare module ":s2sdk" {
|
|
|
6901
6928
|
/**
|
|
6902
6929
|
* @description Adds a string value to a repeated field in the UserMessage.
|
|
6903
6930
|
*
|
|
6904
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6931
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddString|Docs}
|
|
6905
6932
|
*
|
|
6906
6933
|
* @param userMessage The UserMessage instance.
|
|
6907
6934
|
* @param fieldName The name of the field.
|
|
@@ -6912,7 +6939,7 @@ declare module ":s2sdk" {
|
|
|
6912
6939
|
/**
|
|
6913
6940
|
* @description Gets a repeated color value from a field in the UserMessage.
|
|
6914
6941
|
*
|
|
6915
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6942
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedColor|Docs}
|
|
6916
6943
|
*
|
|
6917
6944
|
* @param userMessage The UserMessage instance.
|
|
6918
6945
|
* @param fieldName The name of the field.
|
|
@@ -6924,7 +6951,7 @@ declare module ":s2sdk" {
|
|
|
6924
6951
|
/**
|
|
6925
6952
|
* @description Sets a repeated color value for a field in the UserMessage.
|
|
6926
6953
|
*
|
|
6927
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6954
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedColor|Docs}
|
|
6928
6955
|
*
|
|
6929
6956
|
* @param userMessage The UserMessage instance.
|
|
6930
6957
|
* @param fieldName The name of the field.
|
|
@@ -6936,7 +6963,7 @@ declare module ":s2sdk" {
|
|
|
6936
6963
|
/**
|
|
6937
6964
|
* @description Adds a color value to a repeated field in the UserMessage.
|
|
6938
6965
|
*
|
|
6939
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6966
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddColor|Docs}
|
|
6940
6967
|
*
|
|
6941
6968
|
* @param userMessage The UserMessage instance.
|
|
6942
6969
|
* @param fieldName The name of the field.
|
|
@@ -6947,7 +6974,7 @@ declare module ":s2sdk" {
|
|
|
6947
6974
|
/**
|
|
6948
6975
|
* @description Gets a repeated Vector2 value from a field in the UserMessage.
|
|
6949
6976
|
*
|
|
6950
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6977
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedVector2|Docs}
|
|
6951
6978
|
*
|
|
6952
6979
|
* @param userMessage The UserMessage instance.
|
|
6953
6980
|
* @param fieldName The name of the field.
|
|
@@ -6959,7 +6986,7 @@ declare module ":s2sdk" {
|
|
|
6959
6986
|
/**
|
|
6960
6987
|
* @description Sets a repeated Vector2 value for a field in the UserMessage.
|
|
6961
6988
|
*
|
|
6962
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
6989
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedVector2|Docs}
|
|
6963
6990
|
*
|
|
6964
6991
|
* @param userMessage The UserMessage instance.
|
|
6965
6992
|
* @param fieldName The name of the field.
|
|
@@ -6971,7 +6998,7 @@ declare module ":s2sdk" {
|
|
|
6971
6998
|
/**
|
|
6972
6999
|
* @description Adds a Vector2 value to a repeated field in the UserMessage.
|
|
6973
7000
|
*
|
|
6974
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7001
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddVector2|Docs}
|
|
6975
7002
|
*
|
|
6976
7003
|
* @param userMessage The UserMessage instance.
|
|
6977
7004
|
* @param fieldName The name of the field.
|
|
@@ -6982,7 +7009,7 @@ declare module ":s2sdk" {
|
|
|
6982
7009
|
/**
|
|
6983
7010
|
* @description Gets a repeated Vector3 value from a field in the UserMessage.
|
|
6984
7011
|
*
|
|
6985
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7012
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedVector3|Docs}
|
|
6986
7013
|
*
|
|
6987
7014
|
* @param userMessage The UserMessage instance.
|
|
6988
7015
|
* @param fieldName The name of the field.
|
|
@@ -6994,7 +7021,7 @@ declare module ":s2sdk" {
|
|
|
6994
7021
|
/**
|
|
6995
7022
|
* @description Sets a repeated Vector3 value for a field in the UserMessage.
|
|
6996
7023
|
*
|
|
6997
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7024
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedVector3|Docs}
|
|
6998
7025
|
*
|
|
6999
7026
|
* @param userMessage The UserMessage instance.
|
|
7000
7027
|
* @param fieldName The name of the field.
|
|
@@ -7006,7 +7033,7 @@ declare module ":s2sdk" {
|
|
|
7006
7033
|
/**
|
|
7007
7034
|
* @description Adds a Vector3 value to a repeated field in the UserMessage.
|
|
7008
7035
|
*
|
|
7009
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7036
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddVector3|Docs}
|
|
7010
7037
|
*
|
|
7011
7038
|
* @param userMessage The UserMessage instance.
|
|
7012
7039
|
* @param fieldName The name of the field.
|
|
@@ -7017,7 +7044,7 @@ declare module ":s2sdk" {
|
|
|
7017
7044
|
/**
|
|
7018
7045
|
* @description Gets a repeated QAngle value from a field in the UserMessage.
|
|
7019
7046
|
*
|
|
7020
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7047
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbGetRepeatedQAngle|Docs}
|
|
7021
7048
|
*
|
|
7022
7049
|
* @param userMessage The UserMessage instance.
|
|
7023
7050
|
* @param fieldName The name of the field.
|
|
@@ -7029,7 +7056,7 @@ declare module ":s2sdk" {
|
|
|
7029
7056
|
/**
|
|
7030
7057
|
* @description Sets a repeated QAngle value for a field in the UserMessage.
|
|
7031
7058
|
*
|
|
7032
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7059
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbSetRepeatedQAngle|Docs}
|
|
7033
7060
|
*
|
|
7034
7061
|
* @param userMessage The UserMessage instance.
|
|
7035
7062
|
* @param fieldName The name of the field.
|
|
@@ -7041,7 +7068,7 @@ declare module ":s2sdk" {
|
|
|
7041
7068
|
/**
|
|
7042
7069
|
* @description Adds a QAngle value to a repeated field in the UserMessage.
|
|
7043
7070
|
*
|
|
7044
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7071
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-PbAddQAngle|Docs}
|
|
7045
7072
|
*
|
|
7046
7073
|
* @param userMessage The UserMessage instance.
|
|
7047
7074
|
* @param fieldName The name of the field.
|
|
@@ -7052,7 +7079,7 @@ declare module ":s2sdk" {
|
|
|
7052
7079
|
/**
|
|
7053
7080
|
* @description Retrieves the weapon VData for a given weapon name.
|
|
7054
7081
|
*
|
|
7055
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7082
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetWeaponVDataFromKey|Docs}
|
|
7056
7083
|
*
|
|
7057
7084
|
* @param name The name of the weapon.
|
|
7058
7085
|
*/
|
|
@@ -7061,7 +7088,7 @@ declare module ":s2sdk" {
|
|
|
7061
7088
|
/**
|
|
7062
7089
|
* @description Retrieves the weapon VData for a given weapon.
|
|
7063
7090
|
*
|
|
7064
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7091
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetWeaponVData|Docs}
|
|
7065
7092
|
*
|
|
7066
7093
|
* @param entityHandle The handle of the entity from which to retrieve the weapon VData.
|
|
7067
7094
|
*/
|
|
@@ -7070,7 +7097,7 @@ declare module ":s2sdk" {
|
|
|
7070
7097
|
/**
|
|
7071
7098
|
* @description Retrieves the weapon type of a given entity.
|
|
7072
7099
|
*
|
|
7073
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7100
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetWeaponType|Docs}
|
|
7074
7101
|
*
|
|
7075
7102
|
* @param entityHandle The handle of the entity (weapon).
|
|
7076
7103
|
*/
|
|
@@ -7079,7 +7106,7 @@ declare module ":s2sdk" {
|
|
|
7079
7106
|
/**
|
|
7080
7107
|
* @description Retrieves the weapon category of a given entity.
|
|
7081
7108
|
*
|
|
7082
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7109
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetWeaponCategory|Docs}
|
|
7083
7110
|
*
|
|
7084
7111
|
* @param entityHandle The handle of the entity (weapon).
|
|
7085
7112
|
*/
|
|
@@ -7088,7 +7115,7 @@ declare module ":s2sdk" {
|
|
|
7088
7115
|
/**
|
|
7089
7116
|
* @description Retrieves the gear slot of a given weapon entity.
|
|
7090
7117
|
*
|
|
7091
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7118
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetWeaponGearSlot|Docs}
|
|
7092
7119
|
*
|
|
7093
7120
|
* @param entityHandle The handle of the entity (weapon).
|
|
7094
7121
|
*/
|
|
@@ -7097,7 +7124,7 @@ declare module ":s2sdk" {
|
|
|
7097
7124
|
/**
|
|
7098
7125
|
* @description Retrieves the weapon definition index for a given entity handle.
|
|
7099
7126
|
*
|
|
7100
|
-
* {@link https://untrustedmodders.github.io/plugify-generator/?file=
|
|
7127
|
+
* {@link https://untrustedmodders.github.io/plugify-generator/?file=undefined/blob/main/s2sdk.pplugin.in#item-GetWeaponDefIndex|Docs}
|
|
7101
7128
|
*
|
|
7102
7129
|
* @param entityHandle The handle of the entity from which to retrieve the weapon def index.
|
|
7103
7130
|
*/
|