User contributions

Jump to: navigation, search
Search for contributions
 
 
      
 
   

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

  • 11:27, 15 August 2012 (diff | hist) . . (+1,137). . N GetFlagsXY(Created page with "===From the Scripting Manual=== ''procedure GetFlagsXY(var BlueFlagX, BlueFlagY, RedFlagX, RedFlagY: single);'' '''Parameter Info:''' BlueFlagX (Single): Variable to hol...") (current)
  • 11:26, 15 August 2012 (diff | hist) . . (+2,478). . N MovePlayer(Created page with "===From the Scripting Manual=== ''procedure MovePlayer(ID: byte; X, Y: single);'' '''Parameter Info:''' ID (Byte): Player ID of the target to be moved elsewhere. X (Si...") (current)
  • 11:26, 15 August 2012 (diff | hist) . . (+790). . N SendData(Created page with "===From the Scripting Manual=== ''function SendData(Index: integer; Data: string): boolean;'' '''Parameter Info:''' Index (Integer): Index of the socket to send data to ...") (current)
  • 11:26, 15 August 2012 (diff | hist) . . (+812). . N GetStringIndex(Created page with "===From the Scripting Manual=== ''function GetStringIndex(needle: string; haystack: array of string): integer'' '''Parameter Info:''' needle (String): String to search f...") (current)
  • 11:25, 15 August 2012 (diff | hist) . . (+362). . N CoreVersion(Created page with "===From the Scripting Manual=== '''Data Type:''' String '''Description:''' This variable will be set to the current version of the Soldat Server Scripting Core. ==Ex...") (current)
  • 11:24, 15 August 2012 (diff | hist) . . (+710). . N GetPlayerXY(Created page with "===From the Scripting Manual=== ''procedure GetPlayerXY(ID: byte; var X, Y: single);'' '''Parameter Info:''' ID (Byte): Player ID to return the coordinates of. X,Y (Si...") (current)
  • 11:23, 15 August 2012 (diff | hist) . . (+1,358). . N SpawnObject(Created page with "===From the Scripting Manual=== ''function SpawnObject(X, Y: single; ObjType: byte): integer;'' '''Parameter Info:''' X (Single): X position that the object will spawn. ...") (current)
  • 11:22, 15 August 2012 (diff | hist) . . (+1,817). . N SetSpawnStat(Created page with "===From the Scripting Manual=== ''procedure SetSpawnStat(ID: byte; Stat: string; Value: variant);'' '''Parameter Info:''' ID (Byte): Spawn Point ID to get the stat of. ...") (current)
  • 11:21, 15 August 2012 (diff | hist) . . (+766). . N ContainsString(Created page with "===From the Scripting Manual=== ''function ContainsString(haystack, needle: string): boolean;'' '''Parameter Info:''' haystack (String): String to search in. needle (S...") (current)
  • 11:18, 15 August 2012 (diff | hist) . . (+424). . N GameStyle(Created page with "===From the Scripting Manual=== '''Data Type:''' Byte '''Description:''' Current game style. Death Match = 0 Point Match = 1 Team Match = 2 Capture the Fl...") (current)
  • 11:15, 15 August 2012 (diff | hist) . . (+1,158). . N SetWeaponActive(Created page with "===From the Scripting Manual=== ''procedure SetWeaponActive(ID, WeaponNum: byte; State: boolean);'' '''Parameter Info:''' ID (Byte): Player ID to change weapon visibilit...")
  • 11:14, 15 August 2012 (diff | hist) . . (+620). . N OnException(Created page with "===From the Scripting Manual=== ''procedure OnException(ErrorMessage: string);'' '''Parameter Info:''' ErrorMessage (String): A String containing the error that has ...") (current)
  • 11:13, 15 August 2012 (diff | hist) . . (+978). . N MaskCheck(Created page with "===From the Scripting Manual=== ''function MaskCheck(CheckString, Mask: string): boolean'' '''Parameter Info:''' CheckString (String): String to be checked. Mask (Stri...") (current)
  • 11:13, 15 August 2012 (diff | hist) . . (+667). . N DisableScript(Created page with "===From the Scripting Manual=== '''Data Type:''' Boolean '''Description:''' By default, this variable is false. If you set this variable to true (by doing "DisableS...") (current)
  • 11:12, 15 August 2012 (diff | hist) . . (+481). . N KickPlayer(Created page with "===From the Scripting Manual=== ''procedure KickPlayer(num: byte);'' '''Parameter Info:''' num (byte): Player ID to kick '''Description:''' This function will kick ...") (current)
  • 11:11, 15 August 2012 (diff | hist) . . (+612). . N IDToName(Created page with "This function is obsolete. GetPlayerStat should be used instead. ===From the Scripting Manual=== ''function IDToName(ID: integer): string'' '''Parameter Info:''' ID...") (current)
  • 11:10, 15 August 2012 (diff | hist) . . (+1,616). . N FormatDate(Created page with "===From the Scripting Manual=== ''function FormatDate(FormatString: string): string'' '''Parameter Info:''' FormatString (String): Format to be used on the date. '''D...") (current)
  • 11:08, 15 August 2012 (diff | hist) . . (+1,681). . N CrossFunc(Created page with "===From the Scripting Manual=== ''function CrossFunc(const Params: array of variant; ProcName: string): variant;'' '''Parameter Info:''' Params (Array of Variant): Param...") (current)
  • 11:06, 15 August 2012 (diff | hist) . . (+741). . N KillObject(Created page with "===From the Scripting Manual=== ''procedure KillObject(ObjID: integer): integer;'' '''Parameter Info:''' ObjID (Integer): ID of the object to be destroyed (Created with ...")
  • 11:03, 15 August 2012 (diff | hist) . . (+414). . N ActivateServer(Created page with "===From the Scripting Manual=== ''procedure ActivateServer();'' '''Parameter Info:''' None '''Description:''' This procedure will be called when the Soldat Server f...") (current)
  • 11:03, 15 August 2012 (diff | hist) . . (+1,161). . N RegExpReplace(Created page with "===From the Scripting Manual=== ''function RegExpReplace(Pattern, Source, ReplaceText: string; UseSubstitution: boolean): string;'' '''Parameter Info:''' Pattern (String...") (current)
  • 11:02, 15 August 2012 (diff | hist) . . (+593). . N OnMapChange(Created page with "===From the Scripting Manual=== ''procedure OnMapChange(NewMap: string);'' '''Parameter Info:''' NewMap (String): Name of the new map that has been loaded. '''D...")
  • 11:01, 15 August 2012 (diff | hist) . . (+1,250). . N Iif(Created page with "===From the Scripting Manual=== ''function iif(condition: boolean; const truePart: variant; const falsePart: variant): variant;'' '''Parameter Info:''' Condition (Boolea...") (current)
  • 11:01, 15 August 2012 (diff | hist) . . (+571). . N GetSystem(Created page with "===From the Scripting Manual=== ''function GetSystem(): string;'' '''Parameter Info:''' None '''Description:''' This function will return either 'windows' or 'linux...") (current)
  • 11:00, 15 August 2012 (diff | hist) . . (+1,155). . N DrawText(Created page with "===From the Scripting Manual=== ''procedure DrawText(ID: byte; Text: string; Delay: integer; Colour: longint; Scale: single; X, Y: integer);'' '''Parameter Info:''' ID (...")
  • 11:00, 15 August 2012 (diff | hist) . . (+704). . N FileExists(Created page with "===From the Scripting Manual=== ''function FileExists(FileName: string): boolean;'' '''Parameter Info:''' FileName (String): File to be checked '''Description:''' T...") (current)
  • 10:59, 15 August 2012 (diff | hist) . . (+4,222). . N MM's server(Created page with "As of Fall 2007, All of Michal Marcinkowski's games and development projects are hosted on a separate server. Previously, everything was hosted on various servers owned by [[...") (current)
  • 10:58, 15 August 2012 (diff | hist) . . (+629). . N IDToIP(Created page with "This function is obsolete. GetPlayerStat should be used instead. ===From the Scripting Manual=== ''function IDToIP(ID: byte): string;'' '''Parameter Info:''' ID (By...") (current)
  • 10:54, 15 August 2012 (diff | hist) . . (+842). . N Dec(Created page with " ''procedure dec(var X: integer; N: integer);'' '''Parameter Info:''' variable X (Integer): Numeric variable to decrease by N (see below) N (Integer): Number to decrement...") (current)
  • 10:54, 15 August 2012 (diff | hist) . . (+663). . N OnPlayerSpeak(Created page with "===From the Scripting Manual=== ''procedure OnPlayerSpeak(ID: Byte; Text: string);'' '''NOTE: This event runs in a new thread! So using functions like''' '''Get...")
  • 10:53, 15 August 2012 (diff | hist) . . (+687). . N HTTPEncode(Created page with " ''function HTTPEncode(Source: string): string;'' '''Parameter Info:''' Source (String): String to be encoded. '''Description:''' This function will encode a string(...") (current)
  • 10:52, 15 August 2012 (diff | hist) . . (+716). . N MD5String(Created page with "===From the Scripting Manual=== ''function MD5String(Str: string): string;'' '''Parameter Info:''' Str (String): String to be encrypted '''Description:''' This func...") (current)
  • 10:51, 15 August 2012 (diff | hist) . . (+923). . N GetPiece(Created page with "===From the Scripting Manual=== ''function GetPiece(source, delimiter: string; const piece: integer): string;'' '''Parameter Info:''' Source (String): String to be split...") (current)
  • 10:51, 15 August 2012 (diff | hist) . . (+875). . N Distance(Created page with "===From the Scripting Manual=== ''function Distance(Point1X, Point1Y, Point2X, Point2Y: single): single;'' '''Parameter Info:''' Point1X (Single): X coordinate of Point ...") (current)
  • 10:50, 15 August 2012 (diff | hist) . . (+4,245). . N Exceptions(Created page with "<table> <tr style="font-weight: bold;"> <td>ExceptionType</td> <td>ExceptionParam</td> <td>ExceptionToString(ExceptionType, '$0')</td> </tr> <tr> <td>12</td> <td></td> <td>T...")
  • 10:45, 15 August 2012 (diff | hist) . . (+323). . N IPToID(Created page with "==Examples== <source lang="pascal">Command('/ban '+inttostr(IPToID('127.0.0.1'))); // (This will ban the player with IP 127.0.0.1)</source> ==External Links== * [http://enes...") (current)
  • 10:45, 15 August 2012 (diff | hist) . . (+746). . N GiveBonus(Created page with " procedure GiveBonus(ID, Bonus: byte); '''Parameter Info:''' ID (Byte): ID of the player. Bonus (Byte): Type of the bonus to give: 1 - Predator 2 - Berserker ...") (current)
  • 10:43, 15 August 2012 (diff | hist) . . (+598). . N GetURL(Created page with "===From the Scripting Manual=== ''function GetURL(URL: string): string;'' '''Parameter Info:''' URL (String): http URL to the webpage which shall be requested. '''Des...") (current)
  • 10:36, 15 August 2012 (diff | hist) . . (+1,665). . N CreateBullet(Created page with " ''function CreateBullet(X, Y, VelX, VelY, HitM: single; sStyle, Owner: byte): integer;'' '''Parameter Info:''' X (Single): X coordinate for the bullet to appear Y (Sin...") (current)
  • 10:32, 15 August 2012 (diff | hist) . . (+1,160). . N Command(Created page with "===From the Scripting Manual=== ''function Command(Cmd: string): variant;'' '''Parameter Info:''' Cmd (String): Admin Command to be executed on the server. '''Descrip...") (current)
  • 10:31, 15 August 2012 (diff | hist) . . (+14,348). . N Client-Lobby Protocol Parsers(Created page with "Here are some parsers/constructors to help communicate with the lobby using the Client-Lobby_Protocol ==PHP== ===By PerroAZUL=== It has a function RequestServers. You c...") (current)
  • 10:30, 15 August 2012 (diff | hist) . . (+968). . N Arrayhigh(Created page with "===From the Scripting Manual=== ''function ArrayHigh(X: array of variant): integer;'' '''Parameter Info:''' X (Array of Variant): This paramater can be an array of any d...")
  • 10:28, 15 August 2012 (diff | hist) . . (+2,111). . N GetSpawnStat(Created page with "===From the Scripting Manual=== ''function GetSpawnStat(ID: byte; Stat: string): variant;'' '''Parameter Info:''' ID (Byte): Spawn Point ID to get the stat of. Stat (S...") (current)
  • 10:27, 15 August 2012 (diff | hist) . . (+871). . N Inc(Created page with "===From the Scripting Manual=== ''procedure inc(var X: integer; N: integer);'' '''Parameter Info:''' variable X (Integer): Numeric variable to increase by N (see below) ...") (current)
  • 10:24, 15 August 2012 (diff | hist) . . (+1,047). . N ForwardClient(Created page with "===Scripting Manual Style=== ''procedure ForwardClient(SrcIP: string; SrcPort: integer; TargetIP: string; TargetPort: integer; Message: string);'' '''Parameter Info:''' ...") (current)
  • 10:23, 15 August 2012 (diff | hist) . . (+772). . N OnCommand(Created page with "===From the Scripting Manual=== ''function OnCommand(ID: Byte; Text: string): boolean;'' '''Parameter Info:''' ID (Byte): ID of the player who sent the command. (255 = S...") (current)
  • 10:22, 15 August 2012 (diff | hist) . . (+825). . N AppOnIdle(Created page with "===From the Scripting Manual=== ''procedure AppOnIdle(Ticks: integer);'' '''Parameter Info:''' Ticks (Integer): Current tick count. '''Description:''' This procedure ...")
  • 10:21, 15 August 2012 (diff | hist) . . (+1,759). . N GetObjectStat(Created page with "===From the Scripting Manual=== ''function GetObjectStat(ID: byte; Stat: string): variant;'' '''Parameter Info:''' ID (Byte): Object ID to get the stat of. Stat (Strin...") (current)
  • 10:20, 15 August 2012 (diff | hist) . . (+3,246). . N Things To Do(Created page with "* Add admin commands to http://devs.u13.net/wiki/index.php/Commands * Redo the scripting pages to attribute enesce's manual. Follow onCommand as an example. Key things t...") (current)
  • 10:19, 15 August 2012 (diff | hist) . . (+2,312). . N GetPlayerStat(Created page with "===From the Scripting Manual=== ''function GetPlayerStat(ID: byte; Stat: string): variant;'' '''Parameter Info:''' ID (Byte): Player ID to get the stat of. Stat (Strin...")

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)