# Wert Contactless Payment

## <mark style="background-color:orange;">INSTALLATION</mark>

1 - Drop the product into its resources folder and execute a start command in server.cfg

### *<mark style="background-color:green;">Installation complete</mark>*

## Example use export for client sides

```lua
-- Example use
exports['wert-contactlesspayment']:Payment(function(success)
	if success then
		-- Success
	else
		-- Fail
	end
end, MONEY)

-- Example 1
exports['wert-contactlesspayment']:Payment(function(success)
	if success then
		-- Success
	else
		-- Fail
	end
end, 100)

-- Example 2
exports['wert-contactlesspayment']:Payment(function(success)
	if success then
		-- Success
	else
		-- Fail
	end
end, 200)
```
