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.


Topics - drmorpheus

Pages: [1]
1
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 ;)

2
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;
   

3
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

4
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

Pages: [1]