Results 1 to 3 of 3

Thread: Not sure how to..

  1. #1
    Join Date
    Mar 2011
    Posts
    254
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Not sure how to..

    Well i want to implement a on death function of clicking on a spell and reselecting AutoCast on death.

    I am trying to implement this Fix into a Soul Wars Script so its more versatile, currently it fully supports melee.

    To make it simple for the time being, well as simple as i can make it, i want it to be able to AutoCast Ice Burst on death.

    Anyone who can contribute with ideas i would be appreciative.

  2. #2
    Join Date
    Dec 2011
    Posts
    392
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Is the problem knowing when you die? You can use a bitmap for the spell and right click it.

  3. #3
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    What the guy above me said.

    If your having trouble knowing when you die, just do something like this:

    Simba Code:
    Repeat
      What the script does in the game;
    Until((HPPercent)= 0)
    if ((HPPercent) = 0) then
    begin
      Wait(RandomRange(4000,6000));   // To make sure you have respawned
      AutoCast here;
    end;

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •