<?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=ElMorvano</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=ElMorvano"/>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php/Special:Contributions/ElMorvano"/>
		<updated>2026-05-27T20:20:06Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=KillObject&amp;diff=1524</id>
		<title>KillObject</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=KillObject&amp;diff=1524"/>
				<updated>2014-06-04T10:30:29Z</updated>
		
		<summary type="html">&lt;p&gt;ElMorvano: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''procedure KillObject(ObjID: integer): integer;''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  ObjID (Integer): ID of the object to be destroyed (Created with SpawnObject)&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will delete an object created with the SpawnObject function&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;
  i: integer;&lt;br /&gt;
begin&lt;br /&gt;
  i := SpawnObject(GetPlayerStat(1,'x'),GetPlayerStat(1,'y'),5);&lt;br /&gt;
  sleep(5000);                                // better don't use sleep because it will stop your server for 5 secs&lt;br /&gt;
  KillObject(i);&lt;br /&gt;
  // This will spawn a Spas 12 above player 1, wait 5 seconds and destroy it if it exists.&lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [http://enesce.com/help/index.html?Functions/KillObject.html Scripting Manual page for KillObject]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>ElMorvano</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=SetWeaponActive&amp;diff=1519</id>
		<title>SetWeaponActive</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=SetWeaponActive&amp;diff=1519"/>
				<updated>2014-05-08T11:18:31Z</updated>
		
		<summary type="html">&lt;p&gt;ElMorvano: /* From the Scripting Manual */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===From the Scripting Manual===&lt;br /&gt;
 ''procedure SetWeaponActive(ID, WeaponNum: byte; State: boolean);''&lt;br /&gt;
 &lt;br /&gt;
 '''Parameter Info:'''&lt;br /&gt;
  ID (Byte): Player ID to change weapon visibility. Set to 0 for all players!&lt;br /&gt;
  WeaponNum (Byte): Weapon Number to set visible/invisible in the weapon menu.&lt;br /&gt;
  State (Boolean): Set true=visible or false=invisible. Default: true.&lt;br /&gt;
 &lt;br /&gt;
 '''Description:'''&lt;br /&gt;
  This function will set wether or not a weapon is visible to be selected, in the ingame weapon menu   for a specific player. Set ID to 0 to send to all players.&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;
  SetWeaponActive(1,2,false); // Player 1 will now be unable to choose the HK MP5 from the weapon menu.&lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Notes===&lt;br /&gt;
* All weapons are being enabled each time a player joins any team, so if you do something like that (example below), the Player will have all weapons enabled&lt;br /&gt;
&amp;lt;source lang=&amp;quot;pascal&amp;quot;&amp;gt;begin&lt;br /&gt;
  SetWeaponActive(1,2,false);&lt;br /&gt;
  Command('/setteam2 1');&lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [http://enesce.com/help/index.html?Functions/SetWeaponActive.html Scripting Manual page for SetWeaponActive]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Scripting]][[Category:Server Scripting Functions]]&lt;/div&gt;</summary>
		<author><name>ElMorvano</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Main_Page&amp;diff=248</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Main_Page&amp;diff=248"/>
				<updated>2012-09-11T15:07:57Z</updated>
		
		<summary type="html">&lt;p&gt;ElMorvano: /* Server Scripting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;color:black; background-color:#ffcccc;&amp;quot; cellpadding=&amp;quot;10&amp;quot; class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|The old Soldat Devs wiki has become plagued with spam and other problems.  We are working on migrating all content to this new wiki, but you can find the old content at http://devs-old.soldat.pl for now.  Please feel free to register and copy pages over! We need all the help we can get.&lt;br /&gt;
|}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
== Welcome to the #Soldat.Devs Reference Wiki! ==&lt;br /&gt;
&lt;br /&gt;
Welcome to the Soldat Developer's Wiki.  Here you'll find reference to most of the common topics asked about or discussed in the channel and forums. If you have have bugs or suggestions please contact us on [irc://irc.quakenet.org/#soldat.devs #soldat.devs at QuakeNet].  General information for Soldat can be found and added at the [http://wiki.soldat.nl Official Soldat Community Wiki].  This wiki is intended as a location for the more specific and more technical knowledge that currently exists within the Soldat community. &lt;br /&gt;
&lt;br /&gt;
{| width=100%&lt;br /&gt;
| style=&amp;quot;width: 50%; vertical-align: top&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
===Server General===&lt;br /&gt;
*[[Server|Introduction]]&lt;br /&gt;
*[[Commands|Commands Reference]]&lt;br /&gt;
*[[Logging|Logging]]&lt;br /&gt;
*[[BattlEye|BattlEye Anti-Cheat Engine]]&lt;br /&gt;
&lt;br /&gt;
===Server Configuration===&lt;br /&gt;
*[[Soldat.ini|Editing soldat.ini]]&lt;br /&gt;
*[[Server.ini|Editing server.ini]]&lt;br /&gt;
*[[Mapslist.txt|Editing mapslist.txt]]&lt;br /&gt;
*[[Gamestat.txt|Reading gamestat.txt]]&lt;br /&gt;
*[[Banned.txt|Bans in banned.txt]]&lt;br /&gt;
*[[Remote.txt|Remote admins by IP]]&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;width: 50%; vertical-align: top&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
===Server Scripting===&lt;br /&gt;
*[[Scripting_basics|Introduction]]&lt;br /&gt;
*[[Scripting|Reference Manual]]&lt;br /&gt;
*[[Scripting Templates]]&lt;br /&gt;
*[[Server Scripting]]&lt;br /&gt;
&lt;br /&gt;
===General Technical Information===&lt;br /&gt;
*[[Ports|About Ports, Protocols and Forwarding]]&lt;br /&gt;
*[[Testing your connectivity|Testing Your Connectivity]]&lt;br /&gt;
*[[Refresh|Using the REFRESH Packet]]&lt;br /&gt;
*[[Raw_commands|RAW Commands]]&lt;br /&gt;
*[[Command line arguments|Command Line Arguments]]&lt;br /&gt;
*[[Map|Map File Structure]]&lt;br /&gt;
*[[Download_thread|Map/Files Downloading]]&lt;br /&gt;
*[[Lobby Protocol]]&lt;br /&gt;
*[[Bandwidth|About Bandwidth]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>ElMorvano</name></author>	</entry>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=Main_Page&amp;diff=247</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=Main_Page&amp;diff=247"/>
				<updated>2012-09-11T15:07:50Z</updated>
		
		<summary type="html">&lt;p&gt;ElMorvano: /* Server Scripting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;color:black; background-color:#ffcccc;&amp;quot; cellpadding=&amp;quot;10&amp;quot; class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|The old Soldat Devs wiki has become plagued with spam and other problems.  We are working on migrating all content to this new wiki, but you can find the old content at http://devs-old.soldat.pl for now.  Please feel free to register and copy pages over! We need all the help we can get.&lt;br /&gt;
|}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
== Welcome to the #Soldat.Devs Reference Wiki! ==&lt;br /&gt;
&lt;br /&gt;
Welcome to the Soldat Developer's Wiki.  Here you'll find reference to most of the common topics asked about or discussed in the channel and forums. If you have have bugs or suggestions please contact us on [irc://irc.quakenet.org/#soldat.devs #soldat.devs at QuakeNet].  General information for Soldat can be found and added at the [http://wiki.soldat.nl Official Soldat Community Wiki].  This wiki is intended as a location for the more specific and more technical knowledge that currently exists within the Soldat community. &lt;br /&gt;
&lt;br /&gt;
{| width=100%&lt;br /&gt;
| style=&amp;quot;width: 50%; vertical-align: top&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
===Server General===&lt;br /&gt;
*[[Server|Introduction]]&lt;br /&gt;
*[[Commands|Commands Reference]]&lt;br /&gt;
*[[Logging|Logging]]&lt;br /&gt;
*[[BattlEye|BattlEye Anti-Cheat Engine]]&lt;br /&gt;
&lt;br /&gt;
===Server Configuration===&lt;br /&gt;
*[[Soldat.ini|Editing soldat.ini]]&lt;br /&gt;
*[[Server.ini|Editing server.ini]]&lt;br /&gt;
*[[Mapslist.txt|Editing mapslist.txt]]&lt;br /&gt;
*[[Gamestat.txt|Reading gamestat.txt]]&lt;br /&gt;
*[[Banned.txt|Bans in banned.txt]]&lt;br /&gt;
*[[Remote.txt|Remote admins by IP]]&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;width: 50%; vertical-align: top&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
===Server Scripting===&lt;br /&gt;
*[[Scripting_basics|Introduction]]&lt;br /&gt;
*[[Scripting|Reference Manual]]&lt;br /&gt;
*[[Scripting Templates]]&lt;br /&gt;
*[[Server Scripting}}&lt;br /&gt;
&lt;br /&gt;
===General Technical Information===&lt;br /&gt;
*[[Ports|About Ports, Protocols and Forwarding]]&lt;br /&gt;
*[[Testing your connectivity|Testing Your Connectivity]]&lt;br /&gt;
*[[Refresh|Using the REFRESH Packet]]&lt;br /&gt;
*[[Raw_commands|RAW Commands]]&lt;br /&gt;
*[[Command line arguments|Command Line Arguments]]&lt;br /&gt;
*[[Map|Map File Structure]]&lt;br /&gt;
*[[Download_thread|Map/Files Downloading]]&lt;br /&gt;
*[[Lobby Protocol]]&lt;br /&gt;
*[[Bandwidth|About Bandwidth]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>ElMorvano</name></author>	</entry>

	</feed>