Page 1 of 9 123 ... LastLast
Results 1 to 15 of 133
  1. #1
    Nowayz's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    108
    My Mood
    Cheerful

    Exclamation [VLSE] Vindictus Lua Scripting Engine v1.0

    [VLSE] Vindictus Lua Scripting Engine v1.0


    Summary:
    VSLE Is a Lua implementation inside of Vindictus that allows users to run scripts which perform console commands, set CVars and be free to customize the game to their liking.

    Features:
    1. Run console commands on the game
    2. Force the setting of a ConVar
    3. Get the value of any ConVar
    4. And detect which keys are being pressed
    5. More to come!


    API Reference:
    Code:
    print(str msg) --Prints a string into the stdout handle, which is typically the built in console.
    cmd(str cmd)  --Executes a console command on the game engine
    wait(int ms)  --Waits for a specified number of miliseconds; useful for accurate attack command sequences
    keyDown(int keycode)  --Checks if a specific key is currently being held.  (Wrapper around GetAsyncKeyState)
    keyDown_Press(int keycode)  --Checks if a specific key is currently being pressed.  (Wrapper around GetAsyncKeyState&1)
    getCVar(str cvarname)  --Gets the string value of a specified console variable
    setCVar(str cvarname, str value)  --Sets a console variable to a certain value regardless of replication or other flags
    
    
    Examples:
    
    print("hello world")
    cmd("sv_gravity 0") --turn off gravity
    wait(100)  --Waits for 100miliseconds, or 1/10th of a second
    
    --Checks if a key is pressed and changes the difficulty
    if keyDown_Press(0xC0)~=0 then
       print("difficulty modified!")
       cmd("current_combat_difficulty 1")
    end
    
    -Checks if F10 is pressed, and turns on a speedhack if it is
    if keyDown_Press(0x79)~=0 then  --F10
    	if getCVar("host_timescale")=="1" then
    		setCVar("host_timescale","3")
    	else
    		setCVar("host_timescale","1")
    	end
    end

    How to use?:
    1. Unzip the archive to the folder with your injector
    2. Modify the auto.lua script to your liking
    3. Check console for lua errors if you're script isn't working
    4. Have fun scripting!


    Readme:
    The current version of VLSE only runs a single script auto.lua every 20ms, in the future I will implement threaded support for multiple scripts.
    If you have any additional questions, or feel I didn't provide enough information on a topic please post about it.

    I will be providing a few short scripts that I use as examples of what is possible.

    Helpful Links:
    Keyboard KeyCodes: List of Virtual Key Codes
    Lua Tutorial Directory: lua-users wiki: Tutorial Directory

    Todo:
    • Scriptable message loop for external bots, etc.
    • More engine interface
    • Multithreaded scripts which are run by using the console.




    Virus total scan:VirusTotal - Free Online Virus, Malware and URL Scanner
    Another scan of just the DLL:VirusTotal - Free Online Virus, Malware and URL Scanner
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Nowayz; 01-07-2012 at 04:41 PM.

  2. The Following 33 Users Say Thank You to Nowayz For This Useful Post:

    artkiller (01-07-2012),ayak (01-07-2012),bobbylung (01-08-2012),chipmk (01-07-2012),cmc5414 (01-07-2012),DanK (01-08-2012),Freddy1234 (01-07-2012),freebird2011 (01-07-2012),gaianova (01-07-2012),gercreed (01-08-2012),hatdog (01-07-2012),HaxAttaxxx (01-07-2012),Hopeyd2 (01-07-2012),juicebox92 (01-07-2012),ki4d (01-07-2012),kotlx (01-08-2012),L18RU9 (01-07-2012),LordRyuu (01-07-2012),lyndz160 (01-07-2012),magicb0y (01-07-2012),mason95 (01-07-2012),monkeyman1397 (01-08-2012),mythlr (01-09-2012),nelooangeloo (01-09-2012),nitto1320i (01-07-2012),phantasmyh (01-07-2012),pooppp (01-07-2012),sacrecoeur (01-09-2012),skyhopper99 (01-07-2012),Stebbieff (01-07-2012),tortortor (01-07-2012),tumzz (01-07-2012),xkokorenx (01-07-2012)

  3. #2
    Nowayz's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    108
    My Mood
    Cheerful
    The script I use for Fiona:

    Save it in your auto.lua

    Code:
    --Nowayz(HaloShadoW)'s   Fiona Lua Script
    
    --Spam the hammer finish attack with perfect wait time
    if keyDown(0x47)~=0 then  -- G
    	cmd("plr_play_overlay_sequence battle_hammer_attack_strong_04_finish_d")
    	wait(370)
    end
    
    --Wait for ; to be pressed and repair all my items
    if keyDown_Press(0xBA)~=0 then -- ; Key
    	cmd("campfire_repair")
    end
    
    --Fill all quickbar items with ' or F key (This means infinite spears)
    if (keyDown_Press(0xDE)~=0)or(keyDown_Press(0x46)~=0) then -- ' or F key
    	cmd("cc_fill_all_items")
    end
    
    --Use heavystander infinitely while holding Q
    if keyDown(0x51)~=0 then  -- Q
    	cmd("plr_play_overlay_sequence heavystander_during")
    end
    
    --Wait for F10 to be pressed and enable/disable speedhacks
    if keyDown_Press(0x79)~=0 then  --F10
    	if getCVar("host_timescale")=="1" then
    		setCVar("host_timescale","3")
    	else
    		setCVar("host_timescale","1")
    	end
    end
    Picture:


    Virscans:
    https://www.virustotal.com/file-scan/...0d8-1325975069
    https://virusscan.jotti.org/en/scanre...c7224ecbd36709
    Last edited by Nico; 01-07-2012 at 03:32 PM.

  4. #3
    Metalozed's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Quebec
    Posts
    36
    Reputation
    10
    Thanks
    1
    My Mood
    Asleep
    This looks interesting

  5. #4
    LordRyuu's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    57
    Reputation
    10
    Thanks
    3
    is this like a console?

  6. #5
    Stebbieff's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Twisted
    Needs Virus Scans?

  7. #6
    Nowayz's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    108
    My Mood
    Cheerful
    It is very similar, and also includes a console.
    This will empower you to make scripts that can do whatever you like.

  8. #7
    italyLoLLeR's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Sicily
    Posts
    361
    Reputation
    11
    Thanks
    59
    My Mood
    Asleep
    all we want to know is if this shit can run console commands and work like a console

  9. The Following User Says Thank You to italyLoLLeR For This Useful Post:

    Th3On3 (01-07-2012)

  10. #8
    skyhopper99's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    3
    My Mood
    Cynical
    intresting, i know how to script but i never thought of doing this lol. good work

  11. #9
    Nowayz's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    108
    My Mood
    Cheerful
    Quote Originally Posted by italyLoLLeR View Post
    all we want to know is if this shit can run console commands and work like a console
    Pretty much, I can even make it work identically to the other consoles, I just need more time.

  12. #10
    Metalozed's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Quebec
    Posts
    36
    Reputation
    10
    Thanks
    1
    My Mood
    Asleep
    Take your time.

  13. #11
    Nico's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Germany :D
    Posts
    15,918
    Reputation
    1121
    Thanks
    8,617
    Need two virusscans to approve.

  14. #12
    Nowayz's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    108
    My Mood
    Cheerful
    Virus total scan:https://www.virustotal.com/file-scan/...0d8-1325975069
    Is that what you want?

    Another scan of just the DLL:https://www.virustotal.com/file-scan/...db5-1325975156

    I just wrote this in like 5 minutes, so I've not had time to bum around and figure out how some of the other users at MPGH are doing some of the cool things that their dlls let you do.
    Last edited by Nowayz; 01-07-2012 at 03:30 PM.

  15. #13
    Nico's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Germany :D
    Posts
    15,918
    Reputation
    1121
    Thanks
    8,617
    So yea, approved.

    You got MSN, Skype or Steam?

  16. #14
    Nowayz's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    108
    My Mood
    Cheerful
    I have all 3 but I use MSN and Steam mostly, I'll pm you details.
    Ahg, I don't have enough posts, hold on I'll post some bullshit then PM you.
    Last edited by Nowayz; 01-07-2012 at 03:37 PM.

  17. #15
    uglyman95's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    2
    So basically you can make a bot with this?

    nvm i figured it out (was too lazy to read lawl)

    EDIT: can you pixel check with it?
    Last edited by uglyman95; 01-07-2012 at 03:45 PM.

Page 1 of 9 123 ... LastLast

Similar Threads

  1. Replies: 2
    Last Post: 01-06-2016, 12:38 AM
  2. [Outdated] [VLSE] Vindictus Lua Scripting Engine v1.1 [Fixed]
    By Nowayz in forum Vindictus Hacks & Cheats
    Replies: 113
    Last Post: 01-25-2012, 02:51 PM
  3. Dragonnest Lua scripts?
    By Cold designer in forum Dragon Nest Help
    Replies: 1
    Last Post: 09-18-2011, 10:27 AM
  4. [Detected] [SCRIPT] Vindictus Auto Farming Script v.1.1
    By mikehan in forum Vindictus Hacks & Cheats
    Replies: 22
    Last Post: 07-04-2011, 01:52 PM
  5. [Request] New Vindictus Section For Bots & Scripts
    By Ken Jeong in forum Vindictus Discussions
    Replies: 7
    Last Post: 05-10-2011, 01:28 PM