Created: 01/11/2023, 03:31:45 PM Updated: 01/11/2023, 03:31:45 PM View Change History
1
2
3
4@setvar! jaseGateBookOrRune
5
6if not timerexists jaseGateTimer
7 createtimer jaseGateTimer
8endif
9
10
11removelist jaseGateSpam
12createlist jaseGateSpam
13pushlist jaseGateSpam "Hello this is a Jase gate script"
14pushlist jaseGateSpam "I spam this text every 5 seconds"
15pushlist jaseGateSpam "Yep, follow me Youtube/Jaseowns"
16
17while not dead
18
19
20
21 if timer jaseGateTimer >= 31000
22 say "Casting Gate to the best place in all the land"
23 cast "Gate Travel"
24 wft 5000
25 target jaseGateBookOrRune
26 settimer jaseGateTimer 0
27 endif
28
29 foreach spam in jaseGateSpam
30 say spam
31 wait 5000
32 endfor
33
34
35endwhile
36