RequestMoneyStr now can be more than 1 word long
This commit is contained in:
parent
7977f0129a
commit
22b74b3db6
1 changed files with 16 additions and 10 deletions
|
@ -37,7 +37,13 @@ do
|
||||||
|
|
||||||
if darkrp.canMakeMoneyRequest(target) then
|
if darkrp.canMakeMoneyRequest(target) then
|
||||||
local money = owner():getMoney()
|
local money = owner():getMoney()
|
||||||
target:requestMoney((#args[3] > 0 and args[3] or ""), amount,
|
local requestStr = ""
|
||||||
|
if #args >= 3 then
|
||||||
|
for i = 3, #args do
|
||||||
|
requestStr = requestStr.." "..args[i]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
target:requestMoney(requestStr, amount,
|
||||||
function() --Success
|
function() --Success
|
||||||
if owner():getMoney() + amount >= money then
|
if owner():getMoney() + amount >= money then
|
||||||
core:log(log.INFO, "Successfully received "..darkrp.formatMoney(amount).." from "..target:getName().."!")
|
core:log(log.INFO, "Successfully received "..darkrp.formatMoney(amount).." from "..target:getName().."!")
|
||||||
|
|
Loading…
Reference in a new issue