<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.soldat.pl/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tehbugerz0r</id>
		<title>Soldat Community Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.soldat.pl/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tehbugerz0r"/>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php/Special:Contributions/Tehbugerz0r"/>
		<updated>2026-05-05T23:27:12Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=RoundTo&amp;diff=323</id>
		<title>RoundTo</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=RoundTo&amp;diff=323"/>
				<updated>2013-03-25T07:03:02Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''function RoundTo(Number: extended; Decimals: integer): extended;''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  Number (Extendedl): Numeric value to round up/down. Usually a float value&lt;br /&gt;
  Decimals (Integer): Amount of decimal places to return.&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will return the rounded up/down value of parameter 'Number' with decimal places.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;var&lt;br /&gt;
MyDub: double;&lt;br /&gt;
begin&lt;br /&gt;
    MyDub := 553.5484842;&lt;br /&gt;
    WriteLn(floattostr(RoundTo(MyDub,2))); //553.55 &lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Round]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Round&amp;diff=322</id>
		<title>Round</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Round&amp;diff=322"/>
				<updated>2013-03-25T07:02:32Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''function round(Number: real): integer;''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  Number (Real): Numeric value to round up/down.&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will return the rounded up/down value of parameter 'Number'&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;var&lt;br /&gt;
MyDub: double;&lt;br /&gt;
MyInt: integer;&lt;br /&gt;
begin&lt;br /&gt;
    MyDub := 553.55;&lt;br /&gt;
    MyInt := 42;&lt;br /&gt;
    WriteLn(inttostr(round(MyInt))); //42&lt;br /&gt;
    WriteLn(inttostr(round(MyDub))); //554&lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[RoundTo]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnJoinTeam&amp;diff=321</id>
		<title>OnJoinTeam</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnJoinTeam&amp;diff=321"/>
				<updated>2013-03-19T03:55:37Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnJoinTeam(ID, Team: byte);''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   ID (Byte): ID of the player.&lt;br /&gt;
   Team (Byte): Team the player has requested to join.&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time a player joins a team.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[OnJoinGame]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Events]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnJoinGame&amp;diff=320</id>
		<title>OnJoinGame</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnJoinGame&amp;diff=320"/>
				<updated>2013-03-19T03:54:44Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnJoinGame(ID, Team: byte);''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   ID (Byte): ID of the player.&lt;br /&gt;
   Team (Byte): Team the player has requested to join.&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time a player joins the game.&lt;br /&gt;
   (event is called when xxx joining game(xx.xx.xx.xx:xx) occurs in console)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[OnJoinTeam]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Events]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnPlayerSpeak&amp;diff=319</id>
		<title>OnPlayerSpeak</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnPlayerSpeak&amp;diff=319"/>
				<updated>2013-03-18T03:00:46Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnPlayerSpeak(ID: Byte; Text: string);''&lt;br /&gt;
  &lt;br /&gt;
  '''NOTE: This event runs in a new thread! So using functions like'''&lt;br /&gt;
        '''GetURL or Sleep will not cause the Server to freeze while'''&lt;br /&gt;
        '''the function processes.'''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   ID (Byte): Player ID of the person who just spoke.&lt;br /&gt;
   Text (String): Self Explanitory.&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time a player speaks.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[OnPlayerCommand]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Events]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnAdminMessage&amp;diff=318</id>
		<title>OnAdminMessage</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnAdminMessage&amp;diff=318"/>
				<updated>2013-03-18T02:58:26Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnAdminMessage(IP, Msg: string);''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   IP (String): IP Address of the admin who sent the command.&lt;br /&gt;
   Msg (String): Command received by the admin.&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time a TCP Admin sends data to the Server.&lt;br /&gt;
   Note: REFRESH, SHUTDOWN and REFRESHX will not be called with this function.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[OnAdminConnect]]&lt;br /&gt;
* [[OnAdminDisconnect]]&lt;br /&gt;
* [[OnPlayerSpeak]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Events]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=ReadFile&amp;diff=317</id>
		<title>ReadFile</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=ReadFile&amp;diff=317"/>
				<updated>2013-03-18T02:54:47Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Note that ReadFile ends when it reaches a substitute character (Chr(26)).&lt;br /&gt;
&lt;br /&gt;
===From the Scripting Manual===&lt;br /&gt;
 ''function ReadFile(FileName: string): string;''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  FileName (String): File located in your Soldat Server folder.&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will read a text file (FileName) located in your Soldat Server folder and return it in a String value&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
    &amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;WriteLn(ReadFile('mapslist.txt')); //Outputs all current lines in mapslist.txt&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[WriteLn]]&lt;br /&gt;
* [[WriteFile]]&lt;br /&gt;
* [[ReadINI]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=WriteFile&amp;diff=316</id>
		<title>WriteFile</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=WriteFile&amp;diff=316"/>
				<updated>2013-03-17T08:48:41Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''function WriteFile(FileName, Data: string): boolean;''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  FileName (String): File located in your Soldat Server folder.&lt;br /&gt;
  Data (String): Text to be written to FileName.&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will write a file (FileName) located in your Soldat Server folder and return TRUE if   successful, and FALSE if an error occured.&lt;br /&gt;
&lt;br /&gt;
==Examples== &lt;br /&gt;
&amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;begin&lt;br /&gt;
    WriteFile('test.txt','Hello World!');&lt;br /&gt;
    WriteLn(ReadFile('test.txt')); //Outputs &amp;quot;Hello World!&amp;quot;&lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[ReadFile]]&lt;br /&gt;
* [[WriteLnFile]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=WriteLnFile&amp;diff=315</id>
		<title>WriteLnFile</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=WriteLnFile&amp;diff=315"/>
				<updated>2013-03-17T08:48:02Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''function WriteLnFile(FileName, Data: string): boolean;''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  FileName (String): File located in your Soldat Server folder.&lt;br /&gt;
  Data (String): Text to be written to FileName.&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will write a single LINE to (FileName) in your Soldat Server directory&lt;br /&gt;
&lt;br /&gt;
==Examples==  &lt;br /&gt;
&amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;begin&lt;br /&gt;
    WriteLnFile('scriptlog.txt','I am a line! Hear me roar!');&lt;br /&gt;
     //I am a line! Hear me roar! will now be written to scriptlog.txt&lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[WriteFile]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=ReadFile&amp;diff=314</id>
		<title>ReadFile</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=ReadFile&amp;diff=314"/>
				<updated>2013-03-17T08:46:27Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Note that ReadFile ends when it reaches a substitute character (Chr(26)).&lt;br /&gt;
&lt;br /&gt;
===From the Scripting Manual===&lt;br /&gt;
 ''function ReadFile(FileName: string): string;''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  FileName (String): File located in your Soldat Server folder.&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will read a text file (FileName) located in your Soldat Server folder and return it in a String value&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
    &amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;WriteLn(ReadFile('mapslist.txt')); //Outputs all current lines in mapslist.txt&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[WriteFile]]&lt;br /&gt;
* [[ReadINI]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=WriteFile&amp;diff=313</id>
		<title>WriteFile</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=WriteFile&amp;diff=313"/>
				<updated>2013-03-17T08:45:40Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''function WriteFile(FileName, Data: string): boolean;''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  FileName (String): File located in your Soldat Server folder.&lt;br /&gt;
  Data (String): Text to be written to FileName.&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will write a file (FileName) located in your Soldat Server folder and return TRUE if   successful, and FALSE if an error occured.&lt;br /&gt;
&lt;br /&gt;
==Examples== &lt;br /&gt;
&amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;begin&lt;br /&gt;
    WriteFile('test.txt','Hello World!');&lt;br /&gt;
    WriteLn(ReadFile('test.txt')); //Outputs &amp;quot;Hello World!&amp;quot;&lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[ReadFile]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnAdminDisconnect&amp;diff=312</id>
		<title>OnAdminDisconnect</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnAdminDisconnect&amp;diff=312"/>
				<updated>2013-03-14T07:07:26Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnAdminDisconnect(IP: string);''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   IP (String): IP Address of the admin who disconnected.&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time a TCP Admin disconnects.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[OnAdminConnect]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Events]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnAdminDisconnect&amp;diff=311</id>
		<title>OnAdminDisconnect</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnAdminDisconnect&amp;diff=311"/>
				<updated>2013-03-14T07:07:05Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnAdminDisconnect(IP: string);''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   IP (String): IP Address of the admin who disconnected.&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time a TCP Admin disconnects.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[OnAdminDisconnect]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Events]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnAdminConnect&amp;diff=310</id>
		<title>OnAdminConnect</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnAdminConnect&amp;diff=310"/>
				<updated>2013-03-14T07:05:08Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''procedure OnAdminConnect(IP: string);''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  IP (String): IP Address of the admin who just logged in.&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This procedure will be called every time a TCP Admin connects and authenticates to your Soldat Server. &lt;br /&gt;
  Note that this function is only called after the admin has logged in!&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[OnAdminDisconnect]]&lt;br /&gt;
* [[OnAdminMessage]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Events]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=DoDamage&amp;diff=309</id>
		<title>DoDamage</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=DoDamage&amp;diff=309"/>
				<updated>2013-03-14T07:02:16Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''procedure DoDamage(ID: byte; Damage: integer);''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  ID (Byte): Player ID to do damage to.&lt;br /&gt;
  Damage (Integer): Amount of damage to do (4000 to get a definate kill)&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will do damage to the specified player.&lt;br /&gt;
 &lt;br /&gt;
  NOTE: If you wish to be able to specify a player ID doing damage, use [[DoDamageBy]].&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;begin&lt;br /&gt;
    DoDamage(1,4000); //Instantly kill player 1 (Will appear as 'You killed yourself')&lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=DoDamageBy&amp;diff=308</id>
		<title>DoDamageBy</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=DoDamageBy&amp;diff=308"/>
				<updated>2013-03-14T07:00:46Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: Created page with &amp;quot;===From the Scripting Manual===  ''procedure DoDamageBy(ID,Shooter: Byte; Damage: Integer);''    '''Parameter Info:'''   ID (Byte): Player ID to do damage to.   Shooter (Byte)...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''procedure DoDamageBy(ID,Shooter: Byte; Damage: Integer);''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  ID (Byte): Player ID to do damage to.&lt;br /&gt;
  Shooter (Byte): Player ID doing damage.&lt;br /&gt;
  Damage (Integer): Amount of damage to do (4000 to get a definate kill)&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will do damage to the specified player.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;begin&lt;br /&gt;
    DoDamageBy(1,2,4000); //Instantly kill player 1 (Will appear as 'Killed by Player 2')&lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[DoDamage]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=307</id>
		<title>Category talk:Server Scripting</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=307"/>
				<updated>2013-03-13T09:49:11Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Relatively Major Edits ==&lt;br /&gt;
&lt;br /&gt;
I don't know how talk pages work, so excuse me if I made a mistake here. &lt;br /&gt;
&lt;br /&gt;
I'm thinking about making quite a few changes to various pages in the Server Scripting category, such as a See also section and categories for related variables and possibly functions, as well as adding missing documentation. &lt;br /&gt;
&lt;br /&gt;
As for the extra categories, I'm thinking they shouldn't be linked to the larger ones, to prevent bloating them. An example one of these extra categories would be Player Count Variables, as there are several variables related player count and I think having a single location to easily see them all would be handy. We could link to these extra Categories in the see also section when necessary rather than bloat it by putting them all there.&lt;br /&gt;
&lt;br /&gt;
I also think we need to use the Internal Link more often, such as I did with [[AppOnIdleTimer]] or what I just did there.&lt;br /&gt;
&lt;br /&gt;
My goal in doing this is to help people make small scripts or update old ones more easily by connecting related pages.&lt;br /&gt;
&lt;br /&gt;
We also need to remove all the broken external links to the old eC scripting manual.&lt;br /&gt;
&lt;br /&gt;
I also think the From the Scripting Manual part should be changed, but I'll leave that to discussion. If you want to contact me, I advise you do so through the official Soldat Forums via PM. -Tehbugerz0r&lt;br /&gt;
&lt;br /&gt;
I made these changes on a few pages already. I also added a Beta Server Scripting category. -Tehbugerz0r&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=306</id>
		<title>Category talk:Server Scripting</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=306"/>
				<updated>2013-03-13T09:48:52Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Relatively Major Edits ==&lt;br /&gt;
&lt;br /&gt;
I don't know how talk pages work, so excuse me if I made a mistake here. &lt;br /&gt;
&lt;br /&gt;
I'm thinking about making quite a few changes to various pages in the Server Scripting category, such as a See also section and categories for related variables and possibly functions, as well as adding missing documentation. &lt;br /&gt;
&lt;br /&gt;
As for the extra categories, I'm thinking they shouldn't be linked to the larger ones, to prevent bloating them. An example one of these extra categories would be Player Count Variables, as there are several variables related player count and I think having a single location to easily see them all would be handy. We could link to these extra Categories in the see also section when necessary rather than bloat it by putting them all there.&lt;br /&gt;
&lt;br /&gt;
I also think we need to use the Internal Link more often, such as I did with [[AppOnIdleTimer]] or what I just did there.&lt;br /&gt;
&lt;br /&gt;
My goal in doing this is to help people make small scripts or update old ones more easily by connecting related pages.&lt;br /&gt;
&lt;br /&gt;
We also need to remove all the broken external links to the old eC scripting manual.&lt;br /&gt;
&lt;br /&gt;
I also think the From the Scripting Manual part should be changed, but I'll leave that to discussion. If you want to contact me, I advise you do so through the official Soldat Forums via PM. -Tehbugerz0r&lt;br /&gt;
&lt;br /&gt;
I made these changes on a few pages already. I also added a Beta Server Scripting category.&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=DrawTextEx&amp;diff=305</id>
		<title>DrawTextEx</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=DrawTextEx&amp;diff=305"/>
				<updated>2013-03-13T09:42:16Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''procedure DrawTextEx(ID, Num: byte; Text: string; Delay: integer; Colour: longint; Scale: single; X, Y: integer);''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  ID (Byte): Player ID to write text to. Set to 0 to write to all players!&lt;br /&gt;
  Num (Byte): DrawText layer to use. 1 is used by default DrawText messages (eg. &amp;quot;You killed X&amp;quot;, &amp;quot;X flag returned&amp;quot;).&lt;br /&gt;
  Text (String): Text to be written to the screen.&lt;br /&gt;
  Delay (Integer): Time in milliseconds for the text to remain on screen.&lt;br /&gt;
  Colour (Longint): Colour the text should be when drawn to the console.&lt;br /&gt;
  Scale (Single): Scale to use for drawing.&lt;br /&gt;
  X (Integer): X position for the text. 1 -&amp;gt; 640&lt;br /&gt;
  Y (Integer): Y position for the text. 1 -&amp;gt; 480&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will draw text anywhere on the players screen (Like the You killed Major text).&lt;br /&gt;
  Set ID to 0 to write the text to ALL Players in the server!&lt;br /&gt;
  Difference from DrawText is the Num variable.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[DrawText]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Beta Server Scripting]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=DrawTextEx&amp;diff=304</id>
		<title>DrawTextEx</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=DrawTextEx&amp;diff=304"/>
				<updated>2013-03-13T09:41:20Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''procedure DrawTextEx(ID, Num: byte; Text: string; Delay: integer; Colour: longint; Scale: single; X, Y: integer);''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  ID (Byte): Player ID to write text to. Set to 0 to write to all players!&lt;br /&gt;
  Num (Byte): DrawText layer to use. 1 is used by default DrawText messages (eg. &amp;quot;You killed X&amp;quot;, &amp;quot;X flag returned&amp;quot;).&lt;br /&gt;
  Text (String): Text to be written to the screen.&lt;br /&gt;
  Delay (Integer): Time in milliseconds for the text to remain on screen.&lt;br /&gt;
  Colour (Longint): Colour the text should be when drawn to the console.&lt;br /&gt;
  Scale (Single): Scale to use for drawing.&lt;br /&gt;
  X (Integer): X position for the text. 1 -&amp;gt; 640&lt;br /&gt;
  Y (Integer): Y position for the text. 1 -&amp;gt; 480&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will draw text anywhere on the players screen (Like the You killed Major text).&amp;lt;br&amp;gt;&lt;br /&gt;
  Set ID to 0 to write the text to ALL Players in the server!&lt;br /&gt;
  Difference from DrawText is the Num variable.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[DrawText]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Beta Server Scripting]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=DrawTextEx&amp;diff=303</id>
		<title>DrawTextEx</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=DrawTextEx&amp;diff=303"/>
				<updated>2013-03-13T09:40:30Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''procedure DrawTextEx(ID, Num: byte; Text: string; Delay: integer; Colour: longint; Scale: single; X, Y: integer);''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  ID (Byte): Player ID to write text to. Set to 0 to write to all players!&lt;br /&gt;
  Num (Byte): DrawText layer to use. 1 is used by default [[DrawText]] messages (eg. &amp;quot;You killed X&amp;quot;, &amp;quot;X flag returned&amp;quot;).&lt;br /&gt;
  Text (String): Text to be written to the screen.&lt;br /&gt;
  Delay (Integer): Time in milliseconds for the text to remain on screen.&lt;br /&gt;
  Colour (Longint): Colour the text should be when drawn to the console.&lt;br /&gt;
  Scale (Single): Scale to use for drawing.&lt;br /&gt;
  X (Integer): X position for the text. 1 -&amp;gt; 640&lt;br /&gt;
  Y (Integer): Y position for the text. 1 -&amp;gt; 480&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will draw text anywhere on the players screen (Like the You killed Major text).&amp;lt;br&amp;gt;&lt;br /&gt;
  Set ID to 0 to write the text to ALL Players in the server!&lt;br /&gt;
  Difference from [[DrawText]] is the Num variable.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[DrawText]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Beta Server Scripting]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=DrawTextEx&amp;diff=302</id>
		<title>DrawTextEx</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=DrawTextEx&amp;diff=302"/>
				<updated>2013-03-13T09:39:46Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''procedure DrawTextEx(ID, Num: byte; Text: string; Delay: integer; Colour: longint; Scale: single; X, Y: integer);''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  ID (Byte): Player ID to write text to. Set to 0 to write to all players!&lt;br /&gt;
  Num (Byte): DrawText layer to use. 1 is used by default [[DrawText]] messages (eg. &amp;quot;You killed X&amp;quot;, &amp;quot;X flag returned&amp;quot;).&lt;br /&gt;
  Text (String): Text to be written to the screen.&lt;br /&gt;
  Delay (Integer): Time in milliseconds for the text to remain on screen.&lt;br /&gt;
  Colour (Longint): Colour the text should be when drawn to the console.&lt;br /&gt;
  Scale (Single): Scale to use for drawing.&lt;br /&gt;
  X (Integer): X position for the text. 1 -&amp;gt; 640&lt;br /&gt;
  Y (Integer): Y position for the text. 1 -&amp;gt; 480&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will draw text anywhere on the players screen (Like the You killed Major text).&amp;lt;br&amp;gt;&lt;br /&gt;
  Set ID to 0 to write the text to ALL Players in the server!&lt;br /&gt;
  Difference from [[DrawText]] is the Num variable.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[DrawTextEx]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Beta Server Scripting]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=DrawTextEx&amp;diff=301</id>
		<title>DrawTextEx</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=DrawTextEx&amp;diff=301"/>
				<updated>2013-03-13T09:34:24Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: Created page with &amp;quot; ''DrawTextEx(Id, Num: Byte; Text: String; Delay: Integer; Colour: Longint; Scale: Single; X, Y: Integer)''   '''Parameter Info:'''   ID (Byte): Player ID to write text to. Se...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; ''DrawTextEx(Id, Num: Byte; Text: String; Delay: Integer; Colour: Longint; Scale: Single; X, Y: Integer)''&lt;br /&gt;
&lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  ID (Byte): Player ID to write text to. Set to 0 to write to all players!&lt;br /&gt;
  Num (Byte): DrawText layer to use. 1 is used by default [[DrawText]] messages (eg. &amp;quot;You killed X&amp;quot;, &amp;quot;X flag returned&amp;quot;).&lt;br /&gt;
  Text (String): Text to be written to the screen.&lt;br /&gt;
  Delay (Integer): Time in milliseconds for the text to remain on screen.&lt;br /&gt;
  Colour (Longint): Colour the text should be when drawn to the console.&lt;br /&gt;
  Scale (Single): Scale to use for drawing.&lt;br /&gt;
  X (Integer): X position for the text. 1 -&amp;gt; 640&lt;br /&gt;
  Y (Integer): Y position for the text. 1 -&amp;gt; 480&lt;br /&gt;
&lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will draw text anywhere on the players screen (Like the You killed Major text).&amp;lt;br&amp;gt;&lt;br /&gt;
  Set ID to 0 to write the text to ALL Players in the server!&lt;br /&gt;
  Difference from [[DrawText]] is the Num variable.&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=DrawText&amp;diff=300</id>
		<title>DrawText</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=DrawText&amp;diff=300"/>
				<updated>2013-03-13T09:28:49Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''procedure DrawText(ID: byte; Text: string; Delay: integer; Colour: longint; Scale: single; X, Y: integer);''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  ID (Byte): Player ID to write text to. Set to 0 to write to all players!&lt;br /&gt;
  Text (String): Text to be written to the screen.&lt;br /&gt;
  Delay (Integer): Time in milliseconds for the text to remain on screen.&lt;br /&gt;
  Colour (Longint): Colour the text should be when drawn to the console.&lt;br /&gt;
  Scale (Single): Scale to use for drawing.&lt;br /&gt;
  X (Integer): X position for the text. 1 -&amp;gt; 640&lt;br /&gt;
  Y (Integer): Y position for the text. 1 -&amp;gt; 480&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will draw text anywhere on the players screen (Like the You killed Major text).&amp;lt;br&amp;gt;&lt;br /&gt;
  Set ID to 0 to write the text to ALL Players in the server!&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;begin&lt;br /&gt;
    DrawText(0,'Hello big world!',330,RGB(255,255,255),0.20,40,240);&lt;br /&gt;
    // Will draw: &amp;quot;Hello big world!&amp;quot; in the center of ALL players screens&lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[DrawTextEx]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnPlayerKillEx&amp;diff=299</id>
		<title>OnPlayerKillEx</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnPlayerKillEx&amp;diff=299"/>
				<updated>2013-03-13T09:24:04Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnPlayerKillEx(Killer, Victim: byte; Weapon: byte);''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   Killer (Byte): Player ID of the player who killed the Victim&lt;br /&gt;
   Victim (Byte): Player ID of the Victim.&lt;br /&gt;
   Weapon (Byte): Number of the weapon used to kill the Victim.&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time a player dies.&lt;br /&gt;
   Difference from OnPlayerKill is the Weapon variable(string&amp;gt;byte).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[OnPlayerKill]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Beta Server Scripting]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnPlayerKillEx&amp;diff=298</id>
		<title>OnPlayerKillEx</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnPlayerKillEx&amp;diff=298"/>
				<updated>2013-03-13T09:23:04Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: Created page with &amp;quot;===From the Scripting Manual===   ''procedure OnPlayerKillEx(Killer, Victim: byte; Weapon: byte);''      '''Parameter Info:'''    Killer (Byte): Player ID of the player who ki...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnPlayerKillEx(Killer, Victim: byte; Weapon: byte);''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   Killer (Byte): Player ID of the player who killed the Victim&lt;br /&gt;
   Victim (Byte): Player ID of the Victim.&lt;br /&gt;
   Weapon (Byte): Number of the weapon used to kill the Victim.&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time a player dies.&lt;br /&gt;
   Difference from OnPlayerKill is the Weapon variable(string&amp;gt;byte).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[OnPlayerKillEx]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Beta Server Scripting]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=RayCastEx&amp;diff=297</id>
		<title>RayCastEx</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=RayCastEx&amp;diff=297"/>
				<updated>2013-03-13T09:17:05Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: Created page with &amp;quot;==From the 1.6.4rc1 changelog== - Added RayCastEx function with full control over all RayCast arguments to scriptcore  ==See also== RayCast  [[Category:Beta Server Scripti...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==From the 1.6.4rc1 changelog==&lt;br /&gt;
- Added RayCastEx function with full control over all RayCast arguments to scriptcore&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[RayCast]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Beta Server Scripting]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Category:Beta_Server_Scripting&amp;diff=296</id>
		<title>Category:Beta Server Scripting</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Category:Beta_Server_Scripting&amp;diff=296"/>
				<updated>2013-03-13T09:13:47Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: Created page with &amp;quot;Script variables and functions only available in the latest Beta server.  Category:Server Scripting&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Script variables and functions only available in the latest Beta server.&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnGameEnd&amp;diff=295</id>
		<title>OnGameEnd</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnGameEnd&amp;diff=295"/>
				<updated>2013-03-13T09:11:29Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnGameEnd();''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   None&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time the current game ends via Time Limit or Score Limit. &lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[OnMapChange]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Beta Server Scripting]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnGameEnd&amp;diff=294</id>
		<title>OnGameEnd</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnGameEnd&amp;diff=294"/>
				<updated>2013-03-13T09:10:49Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnGameEnd();''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   None&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time the current game ends via Time Limit or Score Limit. &lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[OnMapChange]]&lt;br /&gt;
&lt;br /&gt;
[[Categories:Beta Server Scripting]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnMapChange&amp;diff=293</id>
		<title>OnMapChange</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnMapChange&amp;diff=293"/>
				<updated>2013-03-13T09:06:10Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnMapChange(NewMap: string);''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   NewMap (String): Name of the new map that has been loaded.&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time the current map on the server changes.&lt;br /&gt;
   Note this event occurs AFTER the map has successfully loaded.&lt;br /&gt;
   NOTE: In 2.6.4, this will be called when the server first starts.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[CurrentMap]]&lt;br /&gt;
* [[NextMap]]&lt;br /&gt;
* [[OnGameEnd]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Events]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=OnMapChange&amp;diff=292</id>
		<title>OnMapChange</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=OnMapChange&amp;diff=292"/>
				<updated>2013-03-13T08:56:49Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  ''procedure OnMapChange(NewMap: string);''&lt;br /&gt;
  &lt;br /&gt;
  '''Parameter Info:'''&lt;br /&gt;
   NewMap (String): Name of the new map that has been loaded.&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
   This procedure will be called every time the current map on the server changes.&lt;br /&gt;
   Note this event occurs AFTER the map has successfully loaded.&lt;br /&gt;
   NOTE: In 2.6.4, this will be called when the server first starts.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[CurrentMap]]&lt;br /&gt;
* [[NextMap]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Events]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=NextMap&amp;diff=291</id>
		<title>NextMap</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=NextMap&amp;diff=291"/>
				<updated>2013-03-13T08:56:03Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  '''Data Type:''' String&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
  The name of the map that will be played next on the server.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[CurrentMap]]&lt;br /&gt;
* [[OnMapChange]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Variables]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=CurrentMap&amp;diff=290</id>
		<title>CurrentMap</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=CurrentMap&amp;diff=290"/>
				<updated>2013-03-13T08:54:58Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  '''Data Type:''' String&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
  Current map being played on the server.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[NextMap]]&lt;br /&gt;
* [[OnMapChange]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Variables]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=289</id>
		<title>Category talk:Server Scripting</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=289"/>
				<updated>2013-03-13T08:51:31Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Relatively Major Edits ==&lt;br /&gt;
&lt;br /&gt;
I don't know how talk pages work, so excuse me if I made a mistake here. &lt;br /&gt;
&lt;br /&gt;
I'm thinking about making quite a few changes to various pages in the Server Scripting category, such as a See also section and categories for related variables and possibly functions, as well as adding missing documentation. &lt;br /&gt;
&lt;br /&gt;
As for the extra categories, I'm thinking they shouldn't be linked to the larger ones, to prevent bloating them. An example one of these extra categories would be Player Count Variables, as there are several variables related player count and I think having a single location to easily see them all would be handy. We could link to these extra Categories in the see also section when necessary rather than bloat it by putting them all there.&lt;br /&gt;
&lt;br /&gt;
I also think we need to use the Internal Link more often, such as I did with [[AppOnIdleTimer]] or what I just did there.&lt;br /&gt;
&lt;br /&gt;
My goal in doing this is to help people make small scripts or update old ones more easily by connecting related pages.&lt;br /&gt;
&lt;br /&gt;
We also need to remove all the broken external links to the old eC scripting manual.&lt;br /&gt;
&lt;br /&gt;
I also think the From the Scripting Manual part should be changed, but I'll leave that to discussion. If you want to contact me, I advise you do so through the official Soldat Forums via PM. -Tehbugerz0r&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=288</id>
		<title>Category talk:Server Scripting</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=288"/>
				<updated>2013-03-13T08:50:58Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: /* Relatively Major Edits */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Relatively Major Edits ==&lt;br /&gt;
&lt;br /&gt;
I don't know how talk pages work, so excuse me if I made a mistake here. &lt;br /&gt;
&lt;br /&gt;
I'm thinking about making quite a few changes to various pages in the Server Scripting category, such as a See also section and categories for related variables and possibly functions, as well as adding missing documentation. &lt;br /&gt;
&lt;br /&gt;
As for the extra categories, I'm thinking they shouldn't be linked to the larger ones, to prevent bloating them. An example one of these extra categories would be Player Count Variables, as there are several variables related player count and I think having a single location to easily see them all would be handy. We could link to these extra Categories in the see also section when necessary rather than bloat it by putting them all there.&lt;br /&gt;
&lt;br /&gt;
I also think we need to use the Internal Link more often, such as I did with [[AppOnIdleTimer]] or what I just did there.&lt;br /&gt;
&lt;br /&gt;
My goal in doing this is to help people make small scripts or update old ones more easily by connecting related pages.&lt;br /&gt;
&lt;br /&gt;
We also need to remove all the broken external links to the old eC scripting manual.&lt;br /&gt;
&lt;br /&gt;
I also think the From the Scripting Manual part should be changed, but I'll leave that to discussion. If you want to contact me, I advise you do so through the official Soldat Forums via PM.&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=287</id>
		<title>Category talk:Server Scripting</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=287"/>
				<updated>2013-03-13T08:49:49Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=MaxPlayers&amp;diff=286</id>
		<title>MaxPlayers</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=MaxPlayers&amp;diff=286"/>
				<updated>2013-03-13T08:46:57Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  '''Data Type:''' Byte&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
  Current player limit for the server (Excluding Admins and Bots)&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;MyInteger: array[1..MaxPlayers] of Integer&lt;br /&gt;
&lt;br /&gt;
//This way the array will hold the needed Integers and not&lt;br /&gt;
//player's 31, or 32, because they are never used.&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[NumPlayers]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Variables]][[Category:Player Count Variables]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=NumPlayers&amp;diff=285</id>
		<title>NumPlayers</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=NumPlayers&amp;diff=285"/>
				<updated>2013-03-13T08:43:48Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual=== &lt;br /&gt;
  '''Data Type:''' Byte&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
  Current number of players playing in the server.&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Variables]][[Category:Player Count Variables]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=NumBots&amp;diff=284</id>
		<title>NumBots</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=NumBots&amp;diff=284"/>
				<updated>2013-03-13T08:42:25Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  '''Data Type:''' Byte&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
  Current number of BOT Players in the server.&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Variables]][[Category:Player Count Variables]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=NumBots&amp;diff=283</id>
		<title>NumBots</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=NumBots&amp;diff=283"/>
				<updated>2013-03-13T08:42:12Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  '''Data Type:''' Byte&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
  Current number of BOT Players in the server.&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Variables]][[Category:Player Count Variable]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=DeathmatchPlayers&amp;diff=282</id>
		<title>DeathmatchPlayers</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=DeathmatchPlayers&amp;diff=282"/>
				<updated>2013-03-13T08:40:46Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  '''Data Type:''' Byte&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
  Current number of players on team 0 (aka Deathmatch)&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Variables]][[Category:Player Count Variables]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=DeathmatchPlayers&amp;diff=281</id>
		<title>DeathmatchPlayers</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=DeathmatchPlayers&amp;diff=281"/>
				<updated>2013-03-13T08:40:29Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  '''Data Type:''' Byte&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
  Current number of players on team 0 (aka Deathmatch)&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Variables]][[Player Count Variables]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=DeltaPlayers&amp;diff=280</id>
		<title>DeltaPlayers</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=DeltaPlayers&amp;diff=280"/>
				<updated>2013-03-13T08:39:26Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  '''Data Type:''' Byte&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
  Current number of players on the Delta (Green) team.&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Variables]][[Category:Player Count Variables]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=CharliePlayers&amp;diff=279</id>
		<title>CharliePlayers</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=CharliePlayers&amp;diff=279"/>
				<updated>2013-03-13T08:37:54Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  '''Data Type:''' Byte&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
  Current number of players on the Charlie (Yellow) team.&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Variables]][[Category:Player Count Variables]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=BravoPlayers&amp;diff=278</id>
		<title>BravoPlayers</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=BravoPlayers&amp;diff=278"/>
				<updated>2013-03-13T08:36:32Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
  '''Data Type:''' Byte&lt;br /&gt;
  &lt;br /&gt;
  '''Description:'''&lt;br /&gt;
  Current number of players on the Bravo (Blue) team.&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Variables]][[Category:Player Count Variables]]&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=277</id>
		<title>Category talk:Server Scripting</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=277"/>
				<updated>2013-03-13T08:33:03Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I don't know how talk pages work, so excuse me if I made a mistake here. &lt;br /&gt;
&lt;br /&gt;
I'm thinking about making quite a few changes to various pages in the Server Scripting category, such as a See also section and categories for related variables and possibly functions, as well as adding missing documentation. &lt;br /&gt;
&lt;br /&gt;
As for the extra categories, I'm thinking they shouldn't be linked to the larger ones, to prevent bloating them. An example one of these extra categories would be Player Count Variables, as there are several variables related player count and I think having a single location to easily see them all would be handy. We could link to these extra Categories in the see also section when necessary rather than bloat it by putting them all there.&lt;br /&gt;
&lt;br /&gt;
I also think we need to use the Internal Link more often, such as I did with [[AppOnIdleTimer]] or what I just did there.&lt;br /&gt;
&lt;br /&gt;
My goal in doing this is to help people make small scripts or update old ones more easily by connecting related pages. &lt;br /&gt;
&lt;br /&gt;
I also think the From the Scripting Manual part should be changed, but I'll leave that to discussion. If you want to contact me, I advise you do so through the official Soldat Forums via PM. -Tehbugerz0r&lt;br /&gt;
&lt;br /&gt;
We also need to remove all the broken external links to the old eC scripting manual. -Tehbugerz0r&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=276</id>
		<title>Category talk:Server Scripting</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=276"/>
				<updated>2013-03-13T08:32:54Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I don't know how talk pages work, so excuse me if I made a mistake here. &lt;br /&gt;
&lt;br /&gt;
I'm thinking about making quite a few changes to various pages in the Server Scripting category, such as a See also section and categories for related variables and possibly functions, as well as adding missing documentation. &lt;br /&gt;
&lt;br /&gt;
As for the extra categories, I'm thinking they shouldn't be linked to the larger ones, to prevent bloating them. An example one of these extra categories would be Player Count Variables, as there are several variables related player count and I think having a single location to easily see them all would be handy. We could link to these extra Categories in the see also section when necessary rather than bloat it by putting them all there.&lt;br /&gt;
&lt;br /&gt;
I also think we need to use the Internal Link more often, such as I did with [[AppOnIdleTimer]] or what I just did there.&lt;br /&gt;
&lt;br /&gt;
My goal in doing this is to help people make small scripts or update old ones more easily by connecting related pages. &lt;br /&gt;
&lt;br /&gt;
I also think the From the Scripting Manual part should be changed, but I'll leave that to discussion. If you want to contact me, I advise you do so through the official Soldat Forums via PM. -Tehbugerz0r&lt;br /&gt;
&lt;br /&gt;
We also need to remove all the broken external links to the old eC scripting manual.&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=275</id>
		<title>Category talk:Server Scripting</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=275"/>
				<updated>2013-03-13T08:31:29Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I don't know how talk pages work, so excuse me if I made a mistake here. &lt;br /&gt;
&lt;br /&gt;
I'm thinking about making quite a few changes to various pages in the Server Scripting category, such as a See also section and categories for related variables and possibly functions, as well as adding missing documentation. &lt;br /&gt;
&lt;br /&gt;
As for the extra categories, I'm thinking they shouldn't be linked to the larger ones, to prevent bloating them. An example one of these extra categories would be Player Count Variables, as there are several variables related player count and I think having a single location to easily see them all would be handy. We could link to these extra Categories in the see also section when necessary rather than bloat it by putting them all there.&lt;br /&gt;
&lt;br /&gt;
I also think we need to use the Internal Link more often, such as I did with [[AppOnIdleTimer]] or what I just did there.&lt;br /&gt;
&lt;br /&gt;
My goal in doing this is to help people make small scripts or update old ones more easily by connecting related pages. &lt;br /&gt;
&lt;br /&gt;
I also think the From the Scripting Manual part should be changed, but I'll leave that to discussion. If you want to contact me, I advise you do so through the official Soldat Forums via PM. -Tehbugerz0r&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=274</id>
		<title>Category talk:Server Scripting</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Category_talk:Server_Scripting&amp;diff=274"/>
				<updated>2013-03-13T08:30:50Z</updated>
		
		<summary type="html">&lt;p&gt;Tehbugerz0r: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I don't know how talk pages work, so excuse me if I made a mistake here. &lt;br /&gt;
&lt;br /&gt;
I'm thinking about making quite a few changes to various pages in the Server Scripting category, such as a See also section and categories for related variables and possibly functions, as well as adding missing documentation. &lt;br /&gt;
&lt;br /&gt;
As for the extra categories, I'm thinking they shouldn't be linked to the larger ones, to prevent bloating them. An example one of these extra categories would be [[Player Count Variables]], as there are several variables related player count and I think having a single location to easily see them all would be handy. We could link to these extra Categories in the see also section when necessary rather than bloat it by putting them all there.&lt;br /&gt;
&lt;br /&gt;
I also think we need to use the Internal Link more often, such as I did with [[AppOnIdleTimer]] or what I just did there.&lt;br /&gt;
&lt;br /&gt;
My goal in doing this is to help people make small scripts or update old ones more easily by connecting related pages. &lt;br /&gt;
&lt;br /&gt;
I also think the From the Scripting Manual part should be changed, but I'll leave that to discussion. If you want to contact me, I advise you do so through the official Soldat Forums via PM. -Tehbugerz0r&lt;/div&gt;</summary>
		<author><name>Tehbugerz0r</name></author>	</entry>

	</feed>