Results 1 to 14 of 14

Thread: Need help with Non Rs game.

  1. #1
    Join Date
    Apr 2018
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Need help with Non Rs game.

    Hello i remember having script that worked in that game with bitmaps.
    Its 2D game with maps (no coords on maps), Monsters are moving and turning sides.
    So i tried today few hours to make proper scipt but no luck.
    Basically it just needs to click on those difference color angel monsters around there(I could set up skills,healing ) with keyboard macro.
    Just need him to reach or move near to monsters/click them to move there. So i can spam skills.
    Or Can u find Coords to move there on random game random map? so it would just run around this field (moving 2D game) and spam skills.
    Game.png

    Any help would be good.

  2. #2
    Join Date
    Dec 2006
    Location
    Program TEXAS home of AUTOERS
    Posts
    7,934
    Mentioned
    26 Post(s)
    Quoted
    237 Post(s)

    Default

    What game is this? You should use simple color finding methods to locate the monster and for the walking maybe randomize coordinate clicking until a monster is found.

  3. #3
    Join Date
    May 2012
    Location
    Glorious Nippon
    Posts
    1,011
    Mentioned
    50 Post(s)
    Quoted
    505 Post(s)

    Default

    I'd use motion detection if the mobs are walking around. It's hard to help with so little information. Really, why does nobody ever say the what the game is called when they ask for help...

  4. #4
    Join Date
    Apr 2018
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by P1nky View Post
    What game is this? You should use simple color finding methods to locate the monster and for the walking maybe randomize coordinate clicking until a monster is found.
    Well Its old Ntreev game called trickster online. Basically it got shut down and it has like 500 players community. The game is kinda broken becouse of Pay2win and some characater have advantage ...
    Well I just rejoined scripting community and havent touched any scripting since 2011(scar i think) I made little script, but its not effective becouse its finding only monsters near me and not walking (thus not clicking? it moves mouse but not Really click on it, gameguard??)

    procedure ClickNpc;
    Var //variables are declared here
    Kana, X, Y:Integer;

    begin

    if FindColor(x, y, 4728097, 1, 1, 700, 600)
    or FindColor(x, y, 3352108, 1, 1, 700, 600)
    or FindColor(x, y, 5911860, 1, 1, 700, 600)
    or FindColor(x, y, 10725792, 1, 1, 700, 600) then

    begin
    MoveMouse(X, Y);
    GetMousePos(x, y);
    Wait(40);
    HoldMouse(x, y, mouse_Left);
    MoveMouse(x + 1, y);
    GetMousePos(x, y);
    ReleaseMouse(x, y, mouse_Left);
    ClickMouse(x, y, mouse_Left);
    wait(3000);
    End;
    End;

    Begin
    repeat
    ClickNpc
    Until(false)
    end.

    Not that good in scripting too but i would love to grind there with spamming skills while noone else does it.

  5. #5
    Join Date
    Apr 2018
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Citrus View Post
    I'd use motion detection if the mobs are walking around. It's hard to help with so little information. Really, why does nobody ever say the what the game is called when they ask for help...
    Not very smart about, motion detections i have to figure it out a bit, but my script was very ineffective.
    About game i think everyone is scared that someone will code a decent script and start grinding there thus gain advantage b8 the script requester or something like that ...

  6. #6
    Join Date
    Apr 2018
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Regular gameplay (exact same spot where i want grind)

    youtube
    watch?v=a9Nb991z6fg

    I dont know how he got zoomed out view tho, in my picture its regular gameplay..

  7. #7
    Join Date
    May 2012
    Location
    Glorious Nippon
    Posts
    1,011
    Mentioned
    50 Post(s)
    Quoted
    505 Post(s)

    Default

    Try not to triple post in the future. Use the edit button instead.
    Here is a plugin for motion detection: https://villavu.com/forum/showthread...42#post1358842
    I can take a look at the game tomorrow and post some more useful help.

  8. #8
    Join Date
    Oct 2017
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Sorry for triple post, will use edit , thanks for this.
    Ill try to figure out about that motion detection
    Keep me updated about it if u look at game tomorrow , thanks!

  9. #9
    Join Date
    May 2012
    Location
    Glorious Nippon
    Posts
    1,011
    Mentioned
    50 Post(s)
    Quoted
    505 Post(s)

    Default

    Quote Originally Posted by Rommir View Post
    Sorry for triple post, will use edit , thanks for this.
    Ill try to figure out about that motion detection
    Keep me updated about it if u look at game tomorrow , thanks!
    also this:
    Multiple Accounts:
    Users are permitted to have one account and one account only. Any additional accounts made will be immediately banned. Depending on the circumstances, further action may be taken as decided at the staff?s discretion.
    https://villavu.com/forum/faq.php?faq=welcome#faq_rules

  10. #10
    Join Date
    Jan 2016
    Posts
    26
    Mentioned
    1 Post(s)
    Quoted
    10 Post(s)

    Default

    pretty cool game ur playin. freaking HUGE but neat. LOTS of colors.
    im no scripter but minimize the area you looking for that pixel in your pixel searching the whole game window and you really do not need to. you can use those x n y cords 1,1,700,600 to make a smaller box.also u do not need to get the pos of the mouse once the pixel is found, most scripting progs will write these output variables after the pixel is found to be used for a move and click right afterwards. just move the mouse and click. Lastly don't use less than 500ms pause or infinite repeats until you have the script working right to avoid spamming clicks. Good luck.

  11. #11
    Join Date
    Apr 2018
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Thanks Ozzhates.

    Citrus, still looking for help, post me news here if u have time.
    Still no luck creating perfect script myself.

  12. #12
    Join Date
    May 2012
    Location
    Glorious Nippon
    Posts
    1,011
    Mentioned
    50 Post(s)
    Quoted
    505 Post(s)

    Default

    Quote Originally Posted by Romanovik View Post
    Citrus, still looking for help, post me news here if u have time.
    Still no luck creating perfect script myself.
    I'm pretty busy this week, sorry. I'll get around to it eventually.
    If you post your code with specific questions you'll probably get more help.

  13. #13
    Join Date
    Apr 2018
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Thats np, I just have the code i put up here , not very familiar with Simba, its similar to scar which iv been using more back in 2012 or so.
    But havent touched any scripting since then, so motion detections and other similar stuff is out of my league.
    Thanks , if u ever touch it give me a hint which method will work best for it and ill try to figure it out.

  14. #14
    Join Date
    Nov 2018
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ôh nice game and nice community

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
  •