#cw-crafting
1 messages · Page 1 of 1 (latest)
Make sure all items in your recipes exist in your inventory script.
If they do, check https://discord.com/channels/1002187567845888042/1199274444271648828 for instructions on how to debug and provide relevant info
If you restart the script, in your F8 console it might print the missing items
Might have to turn debug on tho
ok
All the items are in my inventory script
No errors client or server side
Did not change anything outside the config
I have went over the config more than 2 times
What skill sytem are you using?
none
ok
Could you try just replacing line 307 in client.lua with this:
local hasSkill = true
if item.craftingSkill and (item.craftingSkill <= currentSkill) then
if useDebug then
print('Player has enough skill for', recipe)
end
else
hasSkill = false
if useDebug then
print('Player does not have enough skill for', recipe)
end
end
thanks
question if I dont have a skill system it wont give XP to lock certain things behind XP if thats the case what XP system do you recommend I use
cw-rep
bet