Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xta/titanfall
unofficial Titanfall Ruby Gem
https://github.com/xta/titanfall
Last synced: about 1 month ago
JSON representation
unofficial Titanfall Ruby Gem
- Host: GitHub
- URL: https://github.com/xta/titanfall
- Owner: xta
- Created: 2014-02-16T00:15:49.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-03-15T03:12:13.000Z (over 10 years ago)
- Last Synced: 2024-09-19T09:41:24.039Z (about 2 months ago)
- Language: Ruby
- Homepage:
- Size: 215 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Titanfall Ruby Gem
[Titanfall](http://www.titanfall.com/) PC ([Origin](https://www.origin.com)) Ruby Gem - Version 0.0.2
This gem is not endorsed, certified or otherwise approved in any way by Respawn Entertainment or any of its affiliates.
## Get started in 3, 2, 1 … Mark!
From the command line
`gem install titanfall`
In your ruby file
require 'titanfall
t = Titanfall.newNote: If your local save files are not located at `C:\Users\[YOUR_WIN_USERNAME]\Documents\Respawn`, you will need to pass the path (with proper string escaping) during initialization
require 'titanfall
t = Titanfall.new "C:\\Storage\\Other\\Path\\to\\Respawn"## Instance Methods
#### `bindings`
Get key bindingst.bindings['1'] #=> "weaponSelectPrimary0"
t.bindings['2'] #=> "weaponSelectPrimary1"
t.bindings['3'] #=> "weaponSelectOrdnance"#### `profile`
Get profile configst.profile['training_hasEverFinished'] #=> "1"
#### `settings`
Get setting configst.settings['m_sensitivity'] #=> "5"
#### `videoconfig`
Get video configst.videoconfig['setting.cl_fovScale'] #=> "1.0"
## License
Titanfall Ruby Gem is released under the [MIT License](http://www.opensource.org/licenses/MIT).