diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..40401ab --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +before_script: + - echo "Before script section" + +after_script: + - echo "After script section" + +build1: + stage: build + script: + - echo "Do your build here" + - ls -la gamemodes + - ls -la ~/pawncc + - echo $PWD && ~/pawncc gamemodes/bare.pwn -iinclude "-;+" -v2 -d3 -Z+ + +deploy1: + stage: deploy + script: + - echo "Do your deploy here" diff --git a/announce.exe b/announce.exe deleted file mode 100644 index 22db845..0000000 Binary files a/announce.exe and /dev/null differ diff --git a/gamemodes/bare.amx b/gamemodes/bare.amx deleted file mode 100644 index 298c7e8..0000000 Binary files a/gamemodes/bare.amx and /dev/null differ diff --git a/samp-license.txt b/samp-license.txt deleted file mode 100644 index 0c261bc..0000000 --- a/samp-license.txt +++ /dev/null @@ -1,92 +0,0 @@ ------------------------------------------------------------------------------------- - -The SA-MP modification for Grand Theft Auto: San Andreas (r) is a software project -aimed at extending the functionality of the Grand Theft Auto: San Andreas (r) -software for Microsoft Windows (r). - ------------------------------------------------------------------------------------- - -SA-MP CLIENT AND SERVER SOFTWARE LICENSE AGREEMENT AND ATTRIBUTIONS - - ----- LICENSE TERMS ---- - -(a) You must have a valid license to use Grand Theft Auto: San Andreas (r) PC -in order for this license to be valid. - -(b) The software contained herein is provided on an "as-is" basis without -any form of warranty. - -(c) This software may not be exploited for personal, financial or -commercial gain. - -(d) The author(s) of this software accept no liability for use/misuse of the -software. - -(e) The SA-MP software package may not be distributed, sold, rented or -leased, without written permission of the software author(s). - -(f) You may not create or distribute derivative works of the software or files -contained within the package. - -(g) You may not use this software for any illegal purposes. - -(h) The author(s) of this software retain the right to modify/revoke this license -at any time under any conditions seen appropriate by the author(s). - -(i) Ideas expressed in this software by way of coding or configuration are -property of SA-MP.com. - - ------------------------------------------------------------------------------------- - -(c) 2005-2015 SA-MP.com team. - -The SA-MP.com team is not affiliated with Rockstar Games, Rockstar North or -Take-Two Interactive Software Inc. - -Grand Theft Auto and Grand Theft Auto: San Andreas are registered trademarks of -Take-Two Interactive Software Inc. - ------------------------------------------------------------------------------------- - - ----- ATTRIBUTIONS ---- - -- This software makes use of the RakNet networking library (c) 2003 Kevin Jenkins -- This software makes use of the Pawn language (c) ITB CompuPhase, 1997-2005 -- This software makes use of the ttmath library (c) 2006-2009, Tomasz Sowa -- SHA256 reference implementation (c) 2005,2007,2009 Colin Percival - -*** ttmath LIBRARY LICENSE *** - - Copyright (c) 2006-2009, Tomasz Sowa - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name Tomasz Sowa nor the names of contributors to this - project may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF - THE POSSIBILITY OF SUCH DAMAGE. - ------------------------------------------------------------------------------------- diff --git a/samp-npc.exe b/samp-npc.exe deleted file mode 100644 index e3f1a0d..0000000 Binary files a/samp-npc.exe and /dev/null differ diff --git a/samp-server.exe b/samp-server.exe deleted file mode 100644 index 8871a0f..0000000 Binary files a/samp-server.exe and /dev/null differ diff --git a/server-readme.txt b/server-readme.txt deleted file mode 100644 index e7edf04..0000000 --- a/server-readme.txt +++ /dev/null @@ -1,79 +0,0 @@ -SA-MP 0.3 Server Setup ----------------------- - -Once the configuration is complete, run samp-server.exe to -launch the server process. - -CONFIGURATION: - -Example server.cfg: - echo Executing Server Config... - maxplayers 32 - port 7777 - hostname Unnamed Server - announce 0 - gamemode0 lvdm 1 - gamemode1 rivershell 1 - weburl www.sa-mp.com - rcon_password mypassword - -To configure the server, you must edit the values in server.cfg. They are explained below: - -hostname --------- - Parameters: - string - - Description: - Specifies the hostname shown in the server browser - -port ----- - Parameters: - int - - Description: - Specifies the port to listen on. - This port is used for game connections, rcon connections, and for querying. - -maxplayers ----------- - Parameters: - int - - Description: - Specifies the maximum amount of players. - -announce -------- - Parameters: - int (0 or 1) - - Description: - Announces your server to the 'Internet' server list in the SA:MP browser. On (1) or Off (0). - -weburl ------- - Parameters: - string - - Description: - Specifies the URL shown in the server browser, which is associated to the server. - -rcon_password -------------- - Parameters: - string - - Description: - Specifies the password needed to connect to rcon, or login to rcon ingame. - -gamemode0 - gamemode15 ----------------------- - Parameters: - string - int - - Description: - Specifies the rotation settings. The first parameter sets the game mode name. The second is the number of times it will repeat. - You can use gamemode0 to specify the first gamemode, gamemode1 to specify the second, etc.