i wanna give the player armor and food but want them to keep their own rock and torch so they can have the skin they want on it right now it won't give them it because auto kit how would i make it give them items and they keep their own rock and torch
Keep rock and torch in auto kit?
Yes I found a way you can do this
first remove the rock and torch from the autokit this way they wont get 2 when spawning
you can edit this under oxide\data\Kits.json should look like this you would delete whats highlighted
make sure its the ids of the rock and torch
963906841 rockid 795236088 torchid

you would delete that
then open the Kits.cs on line
229 delete "player.inventory.Strip();"
This strips the player when they spawn removing their rock and torch
then save both files and type
oxide.reload Kits in the server terminal or restart the server and it should let them spawn with their own rock skin
hope this helped
ziruYes I found a way you can do this
first remove the rock and torch from the autokit this way they wont get 2 when spawning
you can edit this under oxide\data\Kits.json should look like this you would delete whats highlighted
make sure its the ids of the rock and torch
963906841 rockid 795236088 torchid
you would delete that
then open the Kits.cs on line
229 delete "player.inventory.Strip();"
This strips the player when they spawn removing their rock and torch
then save both files and type
oxide.reload Kits in the server terminal or restart the server and it should let them spawn with their own rock skin
hope this helped
Cool, Thanks!! man this worked for me.