PDA

View Full Version : Help me Smite...



Wuxong
10-04-2005, 09:09 PM
I was wondering what the best way to add casting to my scripts....

here is what I use for a sword user.. what do i need to do to change it to a smite option....

attack:
put stance offensive
put attack
match wait ...wait
match dead dies
match dead dead
match dead motionless
match dead A little bit
match attack only type ahead
match attack Please wait
match attack Roundtime:
match attack Wait
match R%c arrives
match R%c I could not find
match R%c heads
match R%c you currently have no valid target.
matchwait

that and is there a way to have it check mana for me so I dont fry my nerves caught in bad weather??? Anyone feel bored and wana help ??

[Edited on 10-5-2005 by Wuxong]

Bobmuhthol
10-04-2005, 09:20 PM
I don't know the smite messaging :(

But you should do it with Lich or JSE. IF(%Mana% > X) THEN CAST = pwn.

Wuxong
10-04-2005, 09:22 PM
I am not smart enough to use an outside engine for my scripts.. i am working on getting one tho.... A friend is trying to beat it into my head... But if anyone can change what I am using please let me know .. .

StrayRogue
10-04-2005, 09:24 PM
Depends on a number of a factors for me usually. If I'm a young caster, I try to calculate the average mana per kill. Say in wights, my wizard would try to send himself 16 mana (for four shots of 904) and if couldn't, he'd then mana leech. For my older casters I'd do an individual mana check for each cast. In my spectre hunter if they don't have enough mana they'd pause for 30 seconds then try again - you can't do this in dangerous areas.

This is what it looks like:
mana:
put send 10 <character name>
match attack Channel
match notenough You don't have that many points to transfer!
match injured You are in no condition to be performing this ritual!
matchwait

notenough:
pause 30
goto mana

attack:
pause .5
put 901 spec
match dead dies
match dead dead
match dead motionless
match dead A little bit
match dead The snow spectre screams evilly one last time and goes still.
match attack only type ahead
match attack Please wait
match attack Roundtime:
match attack Wait
match attack Cast Roundtime
match S%c I could not find
match S%c What were you referring to?
match S%c You currently have no valid target. You will need to specify one.
matchwait

[Edited on 5-10-05 by StrayRogue]

Wuxong
10-04-2005, 09:28 PM
thank you i will mess around with that and see if i can fine tune it to my young cleric and his smite....... I will let you know how it goes...