This commit is contained in:
ElPumpo
2018-09-16 15:53:31 +02:00
7 changed files with 81 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
root = true
[*]
indent_size = 4
indent_style = tab
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
View File
+1 -2
View File
@@ -18,7 +18,6 @@ git clone https://github.com/ESX-Org/esx_atm [esx]/esx_atm
- Put it in the `[esx]` directory
## Installation
- Import `esx_atm.sql` in your database
- Add this to your `server.cfg`:
```
@@ -35,4 +34,4 @@ This program Is free software: you can redistribute it And/Or modify it under th
This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License For more details.
You should have received a copy Of the GNU General Public License along with this program. If Not, see http://www.gnu.org/licenses/.
You should have received a copy Of the GNU General Public License along with this program. If Not, see http://www.gnu.org/licenses/.
+2
View File
@@ -9,6 +9,7 @@ server_scripts {
'locales/de.lua',
'locales/br.lua',
'locales/en.lua',
'locales/fi.lua',
'locales/fr.lua',
'locales/es.lua',
'locales/sv.lua',
@@ -21,6 +22,7 @@ client_scripts {
'locales/de.lua',
'locales/br.lua',
'locales/en.lua',
'locales/fi.lua',
'locales/fr.lua',
'locales/es.lua',
'locales/sv.lua',
+31
View File
@@ -0,0 +1,31 @@
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="css/app.css" type="text/css" />
</head>
<body>
<div id="container">
<div id="header">
<img id="logo" src="img/fleeca.png"/>
</div>
<div id="welcome-text">
Olá, <br/>
Obrigado por usar nossos terminais fleeca Bank
</div>
<div id="menu">
<div>
<input type="number" id="deposit_amount" tabindex="1" onClick="this.select();"/>
<button id="deposit_btn">Depósito</button>
</div>
<br><br>
<div>
<input type="number" id="withdraw_amount" tabindex="2" onClick="this.select();"/>
<button id="withdraw_btn">Retirar</button>
</div>
</div>
</div>
<script src="nui://game/ui/jquery.js" type="text/javascript"></script>
<script src="scripts/app.js"></script>
</body>
</html>
+31
View File
@@ -0,0 +1,31 @@
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="css/app.css" type="text/css" />
</head>
<body>
<div id="container">
<div id="header">
<img id="logo" src="img/fleeca.png"/>
</div>
<div id="welcome-text">
Hei, <br/>
Kiitoksia kun käytät meidän Fleece Bank automaatteja
</div>
<div id="menu">
<div>
<input type="number" id="deposit_amount" tabindex="1" onClick="this.select();"/>
<button id="deposit_btn">Talleta</button>
</div>
<br><br>
<div>
<input type="number" id="withdraw_amount" tabindex="2" onClick="this.select();"/>
<button id="withdraw_btn">Nosta</button>
</div>
</div>
</div>
<script src="nui://game/ui/jquery.js" type="text/javascript"></script>
<script src="scripts/app.js"></script>
</body>
</html>
+7
View File
@@ -0,0 +1,7 @@
Locales['fi'] = {
['invalid_amount'] = '~r~Tuo oli virheellinen summa!~s~',
['deposit_money'] = 'sinä talletit ~g~$%s~s~',
['withdraw_money'] = 'sinä nostit ~g~$%s~s~',
['press_e_atm'] = 'paina ~INPUT_PICKUP~ talletaaksesi tai nostaaksesi ~g~Automaatilta~s~',
['atm_blip'] = 'Automaatti',
}