SphereCommunity
@petdesert - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: @petdesert (/Thread-petdesert)



@petdesert - jexnico - 10-15-2018 10:34 PM

how to return when pet is hungry using @petdesert?
so that he does not leave his owner when he is hungry


RE: @petdesert - Coruja - 10-16-2018 05:22 AM

Code:
ON=@PetDesert
return 1
note: this will only prevent the pet desert his owner, but it doesn't skip food checks

to skip food checks you must use
Code:
ON=@RegenStat
IF (<LOCAL.StatID>==3) //food
   return 1
ENDIF
noteĀ²: skipping food check on pets will also skip @PetDesert


RE: @petdesert - jexnico - 10-16-2018 06:23 AM

(10-16-2018 05:22 AM)Coruja Wrote:  
Code:
ON=@PetDesert
return 1
note: this will only prevent the pet desert his owner, but it doesn't skip food checks

to skip food checks you must use
Code:
ON=@RegenStat
IF (<LOCAL.StatID>==3) //food
   return 1
ENDIF
noteĀ²: skipping food check on pets will also skip @PetDesert

thanks Coruja, you are the best.