I've been trying to do this for a while but can't,
Thanks
General
skill mod help
skill mod help
1

script=start
on:changeday {
	if ($player_maxweight==0){
		$player_maxweight=25000;
	}
	if ($player_maxweight<75000) {
		$player_maxweight+=500;
		player_maxweight $player_maxweight;
	}
}
on:load {
	if ($player_maxweight==0){
		$player_maxweight=25000;
	}
	player_maxweight $player_maxweight;
}
script=end
Thanks heaps both of you I finally got it to work. 
1
