My main goal is to have the player's MP start at 0 when they spawn in instead of being full right away.
So far, all I've done was create a small script that looks like this:
void main(){
void self = getlocalvar("self");
changeentityproperty(self, "mp", 0);
}
From there, I made that...