Created: 08/30/2022, 07:42:19 PM Updated: 08/30/2022, 07:42:19 PM View Change History
1
2
3
4
5
6
7
8
9
10if not listexists petNameList
11 createlist petNameList
12endif
13if list petNameList = 0
14 pushlist petNameList "earthboi"
15 pushlist petNameList "earthboigir"
16endif
17
18if followers > 0 and findtype "an earth elemental" ground -1 -1 2 as myPet
19 if noto myPet = "friend"
20 foreach petName in petNameList
21 rename myPet petName
22 break
23 endfor
24 poplist petNameList "front"
25 endif
26else
27 cast "Earth elemental"
28 wait 1000
29 loop
30endif
31