<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Headshot4Fun</id>
	<title>Multi Theft Auto: Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Headshot4Fun"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/wiki/Special:Contributions/Headshot4Fun"/>
	<updated>2026-05-18T14:18:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User:Headshot4Fun&amp;diff=24154</id>
		<title>User:Headshot4Fun</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User:Headshot4Fun&amp;diff=24154"/>
		<updated>2010-07-30T18:46:28Z</updated>

		<summary type="html">&lt;p&gt;Headshot4Fun: /* Scripts to do */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello all, i am headshot4Fun and i am working in some scripts, here they are :D&lt;br /&gt;
&lt;br /&gt;
==Scripts to do==&lt;br /&gt;
* Server introduction&lt;br /&gt;
* Car Menu/options&lt;br /&gt;
* Player menu/options&lt;br /&gt;
* Andromada Interior (not the vehicle mod Duhhhh)&lt;/div&gt;</summary>
		<author><name>Headshot4Fun</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User:Headshot4Fun&amp;diff=24153</id>
		<title>User:Headshot4Fun</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User:Headshot4Fun&amp;diff=24153"/>
		<updated>2010-07-30T18:39:07Z</updated>

		<summary type="html">&lt;p&gt;Headshot4Fun: Created page with 'Hello all, i am headshot4Fun and i am working in some scripts, here they are :D  ==Scripts to do== * Server introduction * Car Menu/options * Player menu/options * Race basics'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello all, i am headshot4Fun and i am working in some scripts, here they are :D&lt;br /&gt;
&lt;br /&gt;
==Scripts to do==&lt;br /&gt;
* Server introduction&lt;br /&gt;
* Car Menu/options&lt;br /&gt;
* Player menu/options&lt;br /&gt;
* Race basics&lt;/div&gt;</summary>
		<author><name>Headshot4Fun</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GuiCreateCheckBox&amp;diff=23989</id>
		<title>GuiCreateCheckBox</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GuiCreateCheckBox&amp;diff=23989"/>
		<updated>2010-07-09T13:36:04Z</updated>

		<summary type="html">&lt;p&gt;Headshot4Fun: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{Client function}}&lt;br /&gt;
This function creates a [[Element/GUI/Checkbox|checkbox]].&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
element guiCreateCheckBox ( float x, float y, float width, float height, string text, bool selected, bool relative, [element parent = nil] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
[[Image:Checkbox.png|thumb|Test Checkbox]]&lt;br /&gt;
*'''x:''' A float of the 2D x position of the checkbox on a player's screen. This is affected by the ''relative'' argument.&lt;br /&gt;
*'''y:''' A float of the 2D y position of the checkbox on a player's screen. This is affected by the ''relative'' argument.&lt;br /&gt;
*'''width:''' A float of the width of the text field next to the checkbox. This is affected by the ''relative'' argument.&lt;br /&gt;
*'''height:''' A float of the height of the text field next to the checkbox. This is affected by the ''relative'' argument.&lt;br /&gt;
*'''text:''' The text to be displayed next to the checkbox.&lt;br /&gt;
*'''selected:''' A boolean representing whether the checkbox created should be selected by default.&lt;br /&gt;
*'''relative:''' This is whether sizes and positioning are relative. If this is ''true'', then all x,y,width,height floats must be between 0 and 1, representing measures relative to the parent.&lt;br /&gt;
&lt;br /&gt;
===Optional Arguments=== &lt;br /&gt;
{{OptionalArg}} &lt;br /&gt;
*'''parent:''' This is the parent that the checkbox is attached to. If the ''relative'' argument is true, sizes and positioning will be made relative to this parent. If the ''relative'' argument is false, positioning will be the number of offset pixels from the parent's origin. If no parent is passed, the parent will become the screen - causing positioning and sizing according to screen positioning.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns [[element]] of the checkbox if it was created succesfully, ''false'' otherwise. &lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
&amp;lt;!-- Explain what the example is in a single sentance --&amp;gt;&lt;br /&gt;
This example does...&lt;br /&gt;
&amp;lt;!-- Add the code below, an emphasis should be on making it clear, not optimized. You could provide two versions if you wish, one clear and well commented, the other optimized --&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
--This line does...&lt;br /&gt;
blabhalbalhb --abababa&lt;br /&gt;
--This line does this...&lt;br /&gt;
Mooooooooo -- cow!&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(seriosly, some one put a exemple here please...)&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{GUI_functions}}&lt;br /&gt;
[[Category:Needs Example]]&lt;/div&gt;</summary>
		<author><name>Headshot4Fun</name></author>
	</entry>
</feed>