hi i am downloaded wasabi fishing and script error in f8 say i am need that skill bar/skillcheck can you give me
May I ask how to set the milliseconds of the mini game
Good job, mate.
You are either
a) Lacking ox_lib
b) Using an outdated version of ox_lib
c) Using the source version of ox_lib and not the latest release version
The good news is all of these issues can be fixed by downloading the latest release version found here:
Just be sure to make sure it’s named ox_lib
and it’s ensured prior to any of Wasabi brand scripts.
Hello, help me deal with the problem, the fish was caught, set up in the inventory, everything was done as it should. But when selling in the console, it doesn’t give money, it doesn’t take fish
sick!!
amazing!
Hello, Im well aware this post was over a year ago however ive just been playing with this script and found away to fix this issue you have here.
All i did was change this code -
function AddMoney(source, type, amount)
if type == ‘cash’ then type = ‘money’ end
local player = GetPlayer(source)
player.addAccountMoney(type, amount)
end
function RemoveMoney(source, type, amount)
if type == ‘cash’ then type = ‘money’ end
local player = GetPlayer(source)
player.removeAccountMoney(type, amount)
end
to
function AddMoney(source, type, amount)
if type == ‘cash’ then type = ‘money’ end
local player = GetPlayer(source)
player.addMoney(amount)
end
function RemoveMoney(source, type, amount)
if type == ‘cash’ then type = ‘money’ end
local player = GetPlayer(source)
player.removeMoney(amount)
end
Now you may not need to use the RemoveMoney function, and it may or may not work for you or anyone else as a direct copy and paste but sure did for me.
For you and those looking to also fix their issue this codes found in wasabi_fishing/bridge/esx/server.lua
located right at the bottom.
thanks