I need help again.
I need a script, that reloads 1 sp every few seconds on the map.
it should work with the sdk
i figured it should look somehow like this
But since I dont know rgss so far...
Can somebody please help me making this thing work.
I need a script, that reloads 1 sp every few seconds on the map.
it should work with the sdk
i figured it should look somehow like this
def main
@wait_count = 0
end
if @wait_count == 0
@actor.sp += 1
@wait_count = 80
end
def update
if @wait_count > 0
@wait_count -= 1
return
end
end
But since I dont know rgss so far...
Can somebody please help me making this thing work.