Scripts for DragonRealms


The following scripts are ones that I use or have used fairly often as a Moon Mage. You may try them out and see if they work for your needs. If not, no big deal, just delete them. I list the scripts out for you to copy and paste them,
that way you can make them command line scripts, or window scripts.

Command line script for charging cambrinth
Note: This only works as a command line script. It will charge the specified cambrinth item repeatedly at the amount you specify when you type the command in.
It's usage is like this: .<script name> <cambrinth item name> <number>
Example: .cam armband 11

counter set 0
loop:
put charge my %1 %2

counter add %2
echo ===> %c Mana <===
pause 5
goto loop

Refractive Field script for training Primary Magic
Note: You must change the "You briskly utter" line to match the type of spell prepare you use for your character.

Start:

put pre rf
waitfor You briskly utter
put har 7
waitfor roundtime
pause
put cast
match Main You gesture
matchwait

Main:

put pre rf
waitfor You briskly utter
pause
pause
put cast
put exp magic
match End mind lock
match Main information
matchwait
End:

put release

Power Perception script
loop:
put per moonbeam
pause 5
put per planet
pause 5
put per katamba
pause 5
put per yavash
pause 5
put per xibar
pause 5
put perc all
pause 5
put per moonlight
pause 5
put per psychic
pause 5
put per perception
pause 5
put per transduction
pause 5
put per stellar
pause 5
put per area
pause 5
put per self
pause 5
put exp power
match End mind lock
match Continue Time Development
matchwait
Continue:
goto loop

End:

[Back to Menu]