Şu şekilde belki işini görür
import player
def auto_stat_distribute():
# Oyuncunun mevcut statü puanı
stat_points = player.GetStatPoint()
while stat_points > 0:
# Örnek: otomatik güç verme
player.AddStatPoint("STR", 1)
stat_points -= 1
# Güncellenmiş...