ESX = nil TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end) RegisterServerEvent('bank:deposit') AddEventHandler('bank:deposit', function(amount) local _source = source local xPlayer = ESX.GetPlayerFromId(_source) if amount == nil or amount <= 0 then TriggerClientEvent('chatMessage', _source, _U('invalid_amount')) else if amount > xPlayer.getMoney() then amount = xPlayer.getMoney() end xPlayer.removeMoney(amount) xPlayer.addAccountMoney('bank', tonumber(amount)) end end) RegisterServerEvent('bank:withdraw') AddEventHandler('bank:withdraw', function(amount) local _source = source local xPlayer = ESX.GetPlayerFromId(_source) local base = 0 amount = tonumber(amount) base = xPlayer.getAccount('bank').money if amount == nil or amount <= 0 then TriggerClientEvent('chatMessage', _source, _U('invalid_amount')) else if amount > base then amount = base end xPlayer.removeAccountMoney('bank', amount) xPlayer.addMoney(amount) end end) RegisterServerEvent('bank:balance') AddEventHandler('bank:balance', function() local _source = source local xPlayer = ESX.GetPlayerFromId(_source) balance = xPlayer.getAccount('bank').money TriggerClientEvent('currentbalance1', _source, balance) end) RegisterServerEvent('bank:transfer') AddEventHandler('bank:transfer', function(to, amountt) local _source = source local xPlayer = ESX.GetPlayerFromId(_source) local zPlayer = ESX.GetPlayerFromId(to) local balance = 0 if zPlayer ~= nil and GetPlayerEndpoint(to) ~= nil then balance = xPlayer.getAccount('bank').money zbalance = zPlayer.getAccount('bank').money if tonumber(_source) == tonumber(to) then TriggerClientEvent('esx:showAdvancedNotification', _source, 'Bank', 'Transfer Money', 'You cannot transfer to your self!', 'CHAR_BANK_MAZE', 9) else if balance <= 0 or balance < tonumber(amountt) or tonumber(amountt) <= 0 then TriggerClientEvent('esx:showAdvancedNotification', _source, 'Bank', 'Transfer Money', 'Not enough money to transfer!', 'CHAR_BANK_MAZE', 9) else xPlayer.removeAccountMoney('bank', tonumber(amountt)) zPlayer.addAccountMoney('bank', tonumber(amountt)) TriggerClientEvent('esx:showAdvancedNotification', _source, 'Bank', 'Transfer Money', 'You transfered ~r~$' .. amountt .. '~s~ to ~r~' .. to .. ' .', 'CHAR_BANK_MAZE', 9) TriggerClientEvent('esx:showAdvancedNotification', to, 'Bank', 'Transfer Money', 'You received ~r~$' .. amountt .. '~s~ from ~r~' .. _source .. ' .', 'CHAR_BANK_MAZE', 9) end end end end)
Write, Run & Share Lua code online using OneCompiler's Lua online compiler for free. It's one of the robust, feature-rich online compilers for Lua language, running the latest Lua version 5.4. Getting started with the OneCompiler's Lua editor is easy and fast. The editor shows sample boilerplate code when you choose language as Lua and start coding.
OneCompiler's Lua online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample Lua program which takes name as input and prints hello message with your name.
name = io.read("*a")
print ("Hello ", name)
Lua is a light weight embeddable scripting language which is built on top of C. It is used in almost all kind of applications like games, web applications, mobile applications, image processing etc. It's a very powerful, fast, easy to learn, open-source scripting language.
-- global variables
a = 10
-- local variables
local x = 30
Value Type | Description |
---|---|
number | Represents numbers |
string | Represents text |
nil | Differentiates values whether it has data or not |
boolean | Value can be either true or false |
function | Represents a sub-routine |
userdata | Represents arbitary C data |
thread | Represents independent threads of execution. |
table | Can hold any value except nil |
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
while(condition)
do
--code
end
Repeat-Until is also used to iterate a set of statements based on a condition. It is very similar to Do-While, it is mostly used when you need to execute the statements atleast once.
repeat
--code
until( condition )
For loop is used to iterate a set of statements based on a condition.
for init,max/min value, increment
do
--code
end
Function is a sub-routine which contains set of statements. Usually functions are written when multiple calls are required to same set of statements which increase re-usuability and modularity.
optional_function_scope function function_name( argument1, argument2, argument3........, argumentn)
--code
return params with comma seperated
end