Signup Now
Results 1 to 3 of 3
  1. #1
    Free User ZingiForTheWin's Avatar
    Join Date
    Dec 2013
    Location
    Sweden
    Posts
    67
    Reputation
    16
    Rep Power
    22

    Cool Character stand still= walk North 1 SQM.

    Hello, im looking for a script that walks north 1 sqm if the character stands still for longer than 5 minutes.
    Its pretty easy to make I guess but im such a noob with scripting so I cant do it XD
    Thanks!

  2. #2
    Wind Tester
    Join Date
    Dec 2013
    Location
    Warsaw, Poland
    Posts
    2,569
    Reputation
    149
    Rep Power
    28
    Quote Originally Posted by ZingiForTheWin View Post
    Hello, im looking for a script that walks north 1 sqm if the character stands still for longer than 5 minutes.
    Its pretty easy to make I guess but im such a noob with scripting so I cant do it XD
    Thanks!
    Poor noob
    init start
    local stime = 300 -- stand time in seconds
    init end

    auto(100)
    if $standtime > stime*1000 then
    move('n')
    wait(1000)
    end


    if it will move (dunno why) more than 1 sqm at the time, use this
    init start
    local stime = 10 -- stand time in seconds
    init end

    auto(100)
    if $standtime >= stime*1000 then
    moveto($posx, $posy-1, $posz)
    wait(1000)
    end
    Last edited by Imba; 09-10-2015 at 12:11 PM.

  3. #3
    Free User ZingiForTheWin's Avatar
    Join Date
    Dec 2013
    Location
    Sweden
    Posts
    67
    Reputation
    16
    Rep Power
    22
    Quote Originally Posted by Imba View Post
    Poor noob
    init start
    local stime = 300 -- stand time in seconds
    init end

    auto(100)
    if $standtime > stime*1000 then
    move('n')
    wait(1000)
    end


    if it will move (dunno why) more than 1 sqm at the time, use this
    init start
    local stime = 10 -- stand time in seconds
    init end

    auto(100)
    if $standtime >= stime*1000 then
    moveto($posx, $posy-1, $posz)
    wait(1000)
    end

    zenks bro!
    was using one of dworak's scripts and he wont be updating those scripts in a while, so this will be the easy fix for a bug thats happening... xD

 

 

Posting Permissions

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