Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - drmorpheus

Pages: [1]
1
Stealth archive / Re: Problem with var boolean script casting
« on: July 02, 2015, 05:44:29 AM »
thank you man,
anyway guys i tought that the script was already fixed but i commit mistake, it doesn't work..

can someone help me?

please i really need it..

2
Stealth archive / Re: Problem with var boolean script casting
« on: June 27, 2015, 06:28:13 AM »
fixed, just used some while and deleted  IF ;)

3
Stealth archive / Re: Problem with var boolean script casting
« on: June 27, 2015, 04:40:34 AM »
OK sorry,  if I  hold the bottom it should cast first magic arrow and then fireball,  but it cast not in the right way. The script cast magic arrow  many times then just a time fireball but the spell flizz many times..

Thanks in advance

4
New member introductions / HI HI Everybody!
« on: June 26, 2015, 02:40:32 PM »
Hi Guys i join the community a year ago maybe more!

I never wrote something about me cause i don't like annoyng people with some log and useless intro, but today i want it.
I play UO since it born, i am a programmer ( Beginner )
and i have a passion for the technology.
I play many other games, but make a list will take a lot of time :D

I need help to improve as a scripter, but i will try to do my best to help beginners as i am.

Thanks in advance to everybody ;)

5
New member introductions / Re: Back again, I am cannot stay away
« on: June 26, 2015, 02:34:57 PM »
happen to me also :D

welcome back!

6
New member introductions / Re: I am Kahless
« on: June 26, 2015, 02:34:28 PM »
Welcome ;)

7
New member introductions / Re: Hi I'm new, here
« on: June 26, 2015, 02:33:59 PM »
welcome man

8
Stealth archive / Problem with var boolean script casting
« on: June 26, 2015, 02:03:50 PM »
Hi Guys i got a problem with a script, could someone trying to help me to fix this?
It's annoying,  i tried to do it in many different way but nothing change.
When i press the Hotkey it doesn't work good.

Thanks in advance to everybody

Kind Regards  Grin

Here the script:

Code: [Select]
procedure cast_spam();
var IsCasting:Boolean;
var arrow:Boolean;
begin
    arrow:=False;
    if not IsCasting then begin        
        if (arrow = False) then begin
        IsCasting:=True
        cast ('Magic_Arrow');
        WaitForTarget(500);
        if targetpresent then begin
          TargetToObject(LastAttack);
          IsCasting:=False;
          arrow:=True;
          end;
        end;
  
        if (arrow = True) then begin
        IsCasting:=True;
        cast ('Fireball');
        WaitForTarget(500);
        if targetpresent then begin
          TargetToObject(LastAttack);
          IsCasting:=False;        
          arrow:=False;
          end;
        end;
    end;
End;
   

9
Stealth archive / Re: Problem with Stealth about casting
« on: December 07, 2014, 07:26:04 AM »
Someone have any news for me?
Please guys help me, i just would like to have a script that allow me to call the function from the Hotkeys to cast a spell..

I tried many times with exec Cast('Heal') but nothing happened

10
Stealth archive / Re: Problem with Stealth about casting
« on: December 05, 2014, 06:24:49 AM »
can you just wrote for me a little script that can allow me how to use that?
And than i will use it like example for the others that i will make?
it's like that i miss the autoload of injection..
I will be honest. The Razor-Edge like feature was suggested by dozens of russian members who were inspired by injection. I never really used this feature or wroted any single line of code (well it could be possible i fixed a bug..) so i dont know the way how to work with it. I can look at it and maybe get it working but no promise....
thank you so much, could be nice.
Because seems realy smooth and fast, the problems are the functions to call with the hotkeys

Post Merge: December 05, 2014, 07:02:29 AM
i found this but when i trying to compile gave me error

Quote
Program SpellCasting;

VAR
  Fizzle : Boolean;
  CastTimer : Cardinal;

procedure CastSpell(Name:String; CastTime: Integer; Target:Cardinal);
var
i:Integer;
timer:TDateTime;
begin
  if( Target=0 ) then
  begin
    i:=0;
    timer:=Now;
   
    if( GetTickCount>CastTimer ) then
    begin
      Cast(Name);
      repeat
        i:=i+100;
        wait(100);
      until( (InJournalBetweenTimes('concentration is|', timer, Now)<>-1) OR (i > 1000));
      CastTimer:=GetTickCount+2000;
    end;
  end; 
 
  if( Target<>0 ) then                                                                                                                                                   
  begin
    i:=0;
    timer:=Now;
   
    if( GetTickCount>CastTimer ) then
    begin
      Cast(Name);
      repeat
        i:=i+100;
        wait(100);
      until( (InJournalBetweenTimes('concentration is|', timer, Now)<>-1) OR ( i > 2000) OR (TargetPresent()));
      if( TargetPresent ) then
      begin
        TargetToObject(Target);
        CastTimer:=GetTickCount()+2000;
      end;
    end;
  end;
 
  if( InJournalBetweenTimes('concentration is|', timer, Now)<>-1 ) then
  begin
    Fizzle:=True;
  end
  else
  begin
    Fizzle:=False;
  end; 
wait(200);
END;

11
Stealth archive / Re: Problem with Stealth about casting
« on: December 05, 2014, 06:19:08 AM »
can you just wrote for me a little script that can allow me how to use that?
And than i will use it like example for the others that i will make?
it's like that i miss the autoload of injection..

because in reality i tried to make a script but maybe i dunno how to do, with normal cast procedure, and i tried to compile it and gave me an error..

12
Stealth archive / Problem with Stealth about casting
« on: December 04, 2014, 12:10:10 PM »
 :( Hi to everybody guys, i got a problem.
That's the first time that i sure uoStealth and i tried to use exec cast('heal'); in hotkeys but on Uo i read that don't know the command, like nothing happens..
Can someone explain to me how to cast?
Do i need some script to do that?
Thanks in advance.

i forgot to ask also why all the time that i trying to compile a script came out the voice compile error^
Vincenzo

13
New member introductions / new intro
« on: May 06, 2012, 07:08:30 PM »
hi everyone i'm vincenzo i was born in italy in 1987, i like ultimaonline so much and since 2008 i started to work with easyuo language..
I hope to work with you guys for some project..
So see ya later and thanks :) vicio

14
Questing / Re: ScriptUO Heartwood Quester v1.19
« on: May 06, 2012, 07:02:28 PM »
good script ;)

Pages: [1]