Results 1 to 3 of 3

Thread: String for Magic Spell?

  1. #1
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default String for Magic Spell?

    Hey guys writing a script. Looked at someone elses script and to pick a spell they have

    Code:
     Spell := DTMFromString('m6wAAAHic42ZgYMhmYmAoBuJSKAax85gg4hlAnAbEmVAxXUYGBiMg1gNiLSBWB2JVKAaxQfLGQGwCxDKbmBik+ViIwlwMxANGEjASAACR+wlw');
    How do I do this for a teleport spell? also what does all the coding mean xd

    Ontop of that:

    Code:
    procedure Statistics4bot;
    begin
               Clock := [0,0];
            ConvertTime(GetTimeRunning,Clock[0],Clock[1])
            Writeln('Time Running ' +tostr(Clock[0])+':'+tostr(Clock[1]))
            Writeln('You have made ' + IntToStr(t * 27) + ' This is how many you have enchanted')
    end;
    it says the 3rd line is wrong? [Error] (62:9): Invalid number of parameters at line 61
    Compiling failed.

  2. #2
    Join Date
    Jan 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I think you need a space after each comma.

  3. #3
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    Quote Originally Posted by Chrome View Post
    I think you need a space after each comma.
    Thanks Chrome, Did some changes and whatnot:

    Code:
    begin
               Clock := [0,0,0];
            ConvertTime(GetTimeRunning,Clock[0],Clock[1],Clock[2])
            Writeln('Time Running ' +tostr(Clock[0])+':'+tostr(Clock[1])+':'+tostr(Clock[2]))
            Writeln('We have made ' + IntToStr(t * 27) + ' Rings this Session')
            Writeln('We have earned ' + IntToStr(t * 27 * 140) + ' Gold Pieces this Session')
            Writeln('Magic Exp Earned ' + IntToStr(t * 27 * 55) + ' xp this Session')
    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
  •