Experience
Grandmaster
use a petlist with the serials.I wonder is there a way to check which char you are on? The reason I ask is diff char has diff beetle. I wanna check if I'm on Emma then use beetle a. If I'm on my crafter then use beetle b. Thanks!
Sent from my iPhone using Tapatalk
if not listexists 'petlist'
createlist 'petlist'
endif
@pushlist 'petlist' ' ' //Beetle A
@pushlist 'petlist' ' ' //Beetle B
if @findalias 'mount' and not @findobject 'mount'
unsetalias 'mount'
endif
if not @findobject 'mount'
for 0 to 'petlist'
if @findobject petlist[] 'any' 'ground' 0 30
setalias 'mount' petlist[]
endif
endfor
endif