PDA

View Full Version : mana check



Tumbadoo
03-21-2010, 05:24 AM
I want to add a mana check into a script. Can someone show me what that looks like please? Using stormfront.

Drew
03-21-2010, 05:41 AM
I want to add a mana check into a script. Can someone show me what that looks like please? Using stormfront.

Here's the kinda dirty brute force way to do it, unfortunately I don't know any way to do it other than this way without Lich.

checkmana:
pause 1
put send 20 somegsplayer
match goahead I could not find what you were referring to
match wait You don't have that many points to transfer
matchwait

Endlin
03-21-2010, 02:38 PM
Could also use infuse.

Latrinsorm
03-21-2010, 08:25 PM
I consider the send technique to be very elegant, computationally. Typing out every possible return for mana remaining in precisely the correct order appeals to my obsessive side, but is still pretty brutish.

And wouldn't infuse make you lose the mana if you had it?

Bobmuhthol
03-21-2010, 08:49 PM
<<And wouldn't infuse make you lose the mana if you had it?>>

This.

Endlin
03-21-2010, 10:43 PM
Oh yeah.. duh.

I was just thinking about checking if you had any mana left..

DaCapn
03-22-2010, 02:32 AM
I consider the send technique to be very elegant, computationally. Typing out every possible return for mana remaining in precisely the correct order appeals to my obsessive side, but is still pretty brutish.

And wouldn't infuse make you lose the mana if you had it?

Just as a side note, the SF interpreter does have some limited regex support.

Here's an example of use in a different context:


RANK_CHECKER:
# SHIELD
matchre 0_to_10 /You have (\d|no) ranks in the Stun Maneuvers skill./
# WEAPON
matchre 10_to_20 /You have 1\d ranks in the Stun Maneuvers skill./
# GET
matchre 20_to_31 /You have 2\d ranks in the Stun Maneuvers skill./
# STAND
matchre 20_to_31 /You have (30|31) ranks in the Stun Maneuvers skill./
matchre 32_to_40 /You have (32|33) ranks in the Stun Maneuvers skill./
matchre 32_to_40 /You have (34|35) ranks in the Stun Maneuvers skill./
matchre 32_to_40 /You have (36|37) ranks in the Stun Maneuvers skill./
matchre 32_to_40 /You have (38|39) ranks in the Stun Maneuvers skill./
# STANCE1
matchre 40_to_50 /You have 4\d ranks in the Stun Maneuvers skill./
# ATTACK
matchre 50_to_60 /You have 5\d ranks in the Stun Maneuvers skill./
# STANCE2
matchre 60_to_62 /You have 6\d ranks in the Stun Maneuvers skill./
# MOVE
matchre 63_to_63 /You are a Master of Stun Maneuvers./
matchre 0_to_10 /GLD MENU for additional commands./
put gld
matchwait

Gibreficul
03-22-2010, 05:17 PM
Stop being a noob and install Lich.
Www.lichproject.org

It has about half a dozen ways to check your mana without sending a command to the game