View Full Version : Comma Gemsinging Script needed
MotleyCrew
09-23-2020, 08:33 AM
Anyone have a script that works with the new commas in EXP? I am assuming that is the issue with the one I use as it hangs up there. Or I can post the script I have and someone who knows numbers can fix it please?
TIA
Tgo01
09-23-2020, 08:40 AM
Or I can post the script I have and someone who knows numbers can fix it please?
Sure. If it's just a comma thing should be an easy enough fix.
MotleyCrew
09-23-2020, 08:51 AM
Sure. If it's just a comma thing should be an easy enough fix.
Not saying that is it, I am not a script builder/writer by any means. I rely on you smart people who enjoy numbers. I am just guessing it has to do with the recent changes to EXP and that they added commas to all numbers in game including in EXP. I'll post the script below.
MotleyCrew
09-23-2020, 08:52 AM
#gemsing
If_5 goto Inst
If_3 goto Prestart
If_4 goto Prestart
Inst:
Echo Type .gemsing (Gem name full name example; 'opal') (container w\gems) (container to place gems when done) (container to put orb quality gems, if left blank will put all in same container)
echo 1 If using auto-runner program, keep an item in left hand to avoid possible error.
echo 2 Script may skip one potential sing depending on your pattern with 1004.
Echo ************************************************** **********************
exit
Prestart:
if_2 put open my %2
if_3 put open my %3
wait
if_4 put open my %4
MainLoop:
put get %1 from my %2
Match Exit Get what?
Match Handfull You need a free hand to pick that up
Match FirstSing You remove
Match Stunned You are still stunned
MatchWait
Stunned:
pause 2
goto mainloop
Prepfirstsing:
pause 1
FirstSing:
MATCH Nomana Mana: 0/
MATCH Nomana Mana: 1/
MATCH Nomana Mana: 2/
MATCH Nomana Mana: 3/
MATCH Nomana Mana: -
MATCH prep1004 Mana:
PUT exp
MATCHWAIT
Prep1004:
put prep 1004
match CastFirstSing Your spellsong is ready.
Match Heal You can't make that dextrous of a move!
Match CastFirstSing You already have a spell readied
match ReprepFirstSing Wait
match ReprepFirstSing Nothing happens
match Nomana but you don't
MatchWait
ReprepFirstSing:
GoTo PrepFirstSing
CastFirstSing:
Match Done it crack loudly and strain
Match Done voice is severely affecting the
Match Done into it filling the imperfections
Match Done voice is severely affecting the
Match orb the gem becomes more perfect
Match Loresing you sense that it cannot be purified
Match orb appearing smoother and more pure in color
Match Done improves somewhat
Match Break Your focused voice causes the
Match armor1 Your armor prevents the song from working correctly
put sing my %1
MatchWait
orb:
match singwait a little more and is void of some natural imperfections
match madeorb begins to twist and turn as the very essence
matchwait
Break:
echo **DOH!**
put sign staunching
goto mainloop
Loresing:
match Mage Pulses Strongly
match pause trying to draw power from you
match done You learn nothing new about the
match nomana2 but find yourself unable to sing!
put loresing %1 of perfection fine;Your purpose now be mine?
Matchwait
Handfull:
put put my %1 in my %2
wait
put get %1 from my %2
Match FirstSing You remove
match emptyhands You need a free hand to pick that up
matchwait
madeorb:
wait
match done Get what?
match Mainloop You put
match openorb closed
Match madeorb wait
If_4 Match Fullorb There isn't enough room
Match fullcont There isn't enough room
If_4 put put my %1 in my %4
If_4 matchwait
put put my %1 in my %3
matchwait
pause:
pause 1
match done Get what?
match Mainloop You put
match pause wait
match Opencont closed
If_4 put put my %1 in %4
If_4 matchwait
put put my %1 in my %3
matchwait
Done:
pause 2
put put my %1 in my %3
goto MainLoop
armor1:
echo ***Take off your armor please***
pause 1
goto firstsing
nomana:
echo ***Your out of mana! If no senders or cant wrack please exit until you get mana.***
Match firstsing . You gain
Match firstsing You shudder as your life-force is torn and reshaped!
matchwait
nomana2:
echo ***Your out of mana! If no senders or cant wrack please exit until you get mana.***
Match loresing . You gain
Match loresing You shudder as your life-force is torn and reshaped!
matchwait
Heal:
echo ** You need to get healed!!**
goto exit
emptyhands:
echo ***Your hands are full***
exit
Exit:
exit
openorb:
put open my %4
wait
goto madeorb
Opencont:
put open my %4
wait
goto pause
Singwait:
pause 3
goto firstsing
Fullcont:
Echo ***Your Main Gem Container is full. Please make room and try again.***
exit
Fullorb:
Echo ***Since your Orb container is full, placing this gem in your main container.***
match done I could not find what you were referring to
match Mainloop You put
match openorb closed
Match madeorb wait
Match fullcont There isn't enough room
put put my %1 in my %3
matchwait
Mage:
Echo ***Congrats! You just became an instant millionaire!***
Echo ***Mage Rechargable Gem Found!!!
Echo ***Congrats! You just became an instant millionaire!***
Pause 2
Echo ***A mage rechargable gem is a gem that a wizard can imbed and it can be charged up and recharged when its drained of the spell!***
Pause 1
Echo ***Put this gem in a safe place where you wont sell it to the gem dealer accidently.***
Echo ***Due to the Amount of money this gem is worth, stopping script and rerunning these messages.***
Echo
Echo
Echo ***Congrats! You just became an instant millionaire!***
Echo ***Mage Rechargable Gem Found!!!
Echo ***Congrats! You just became an instant millionaire!***
pause 5
goto Mage
Methais
09-23-2020, 08:59 AM
Anyone have a script that works with the new commas in EXP? I am assuming that is the issue with the one I use as it hangs up there. Or I can post the script I have and someone who knows numbers can fix it please?
TIA
;gibs_purify still works fine for me.
Tgo01
09-23-2020, 09:00 AM
My bad, I thought this was a Lich script.
Been a while since I've done scripting in SF but it doesn't look like the exp command even does anything in this script.
I wonder if:
PUT exp
Is supposed to be:
PUT info
Because info is what shows your current mana, not exp.
MotleyCrew
09-23-2020, 09:10 AM
No idea. It has always worked as is until today. I haven't used it since they made the changes to EXP and that seems to be where it hangs.
Trying it with INFO instead of EXP and it's working so far.
Thank you Tgo01 :up:
MotleyCrew
09-23-2020, 09:13 AM
;gibs_purify still works fine for me.
If that is lich, I don't use it.
Tgo01
09-23-2020, 09:31 AM
No idea. It has always worked as is until today. I haven't used it since they made the changes to EXP and that seems to be where it hangs.
Trying it with INFO instead of EXP and it's working so far.
Thank you Tgo01 :up:
You betcha.
Methais
09-23-2020, 10:40 AM
If that is lich, I don't use it.
Reported.
https://i.pinimg.com/originals/e0/7e/d3/e07ed34dfa93c0e8e303e9cb560e6594.gif
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.