[SCRIPT] Player clothes always wet mod
-
Is there any mod that prevents the clothes from drying up?
-
@Alif-Namikaze Create a text document called PlayerAlwaysWet.cs on your PC. Copy and paste the following code into it. Then copy that file into your scripts folder.
If you change the
1f
to something like.5f
, the player will be wet up to halfway. If you do change the value, you must make sure you put thef
on the end.using System; using GTA; namespace PlayerAlwaysWet { public class cPlayerAlwaysWet : Script { public cPlayerAlwaysWet() { this.Tick += onTick; Interval = 0; } private void onTick(object sender, EventArgs e) { // Change the 1f to whatever height value you want to be wet 0f = dry, 1f = wet for the full height of the character Game.Player.Character.WetnessHeight = 1f; } } }
-
@LeeC2202 Thanks man..really appreciate it