Quote:
Something to add:
In Character.cs searchAnd replace (Action == 250) with:Code:Stamina < 100
And one error should pop-up about putting "}" put click the error and just put it there.Code:if (Action == 250) if (MyChar.VIP) { if (Stamina < 130) Stamina += 15; if (Stamina > 130) Stamina = 130; } else { if (Stamina < 100) { Stamina += 8; if (Stamina > 100) Stamina = 100; MyClient.SendPacket(General.MyPackets.Vital(UID, 9, Stamina)); }
Now searchAnd replace the whole code with:Code:Stamina = 100
And once again an error should occur about "}" and click the error, and add the "}" And now you see my point just keep searchingCode:if (revp[0] == LocMap) { if (MyChar.VIP) { Stamina = 130; Teleport(revp[1], revp[2], revp[3]); break; } else { Stamina = 100; Teleport(revp[1], revp[2], revp[3]); break; } } }and do as I did my addingCode:Stamina = 100;
And changing the Stamina amount to 130 instead of 100 and then doCode:if (MyChar.VIP) {
And do if they arent VIPCode:} else {
Nice you could also add revive here