Tuesday, June 2nd, 2020, 10:56 PM
(This post was last modified: Tuesday, June 2nd, 2020, 10:57 PM by EmmE.)
If you want to use both soulshots and spiritshot using only 1 script for your walker you need to:
1. Locate your script folder for the walker
2. Find donater_soulshot_d script (EXAMPLE)
3. Open it with notepad
4. Delete the old text and paste new one:
5. Run the script named donater_soulshot_d ingame via walker.
Note: You can change the script name to any other as long as it matches the LABEL attribute inside the script. You can also lower the value of the DELAY attribute to use soulshots and spiritshot more often.
1. Locate your script folder for the walker
2. Find donater_soulshot_d script (EXAMPLE)
3. Open it with notepad
4. Delete the old text and paste new one:
Code:
LABEL(donater_soulshot_d)
ItemCount(Blessed Spiritshot: D Grade[ID=7616],<,10)
JMP(exit_script)
USEITEM(Blessed Spiritshot: D Grade[ID=7616])
DELAY(50)
ItemCount(Soulshot: D-grade[ID=7614],<,10)
JMP(exit_script)
USEITEM(Soulshot: D-grade[ID=7614])
DELAY(50)
JMP(donater_soulshot_d)
LABEL(exit_script)
EXIT()
5. Run the script named donater_soulshot_d ingame via walker.
Note: You can change the script name to any other as long as it matches the LABEL attribute inside the script. You can also lower the value of the DELAY attribute to use soulshots and spiritshot more often.