Search results

  1. adding Experience points

    So here the deal: I must add a new stat (experience points) to the playerMobile. So i got an Experience class that look like this for now: public class Experience { public int pointXP { get; set; } public Experience() { pointXP = 0; } } so...
Back