├── LICENSE ├── README.md └── vC-vote ├── client.lua ├── fxmanifest.lua ├── html ├── app.js ├── index.html ├── loading-buffering.gif └── style.css ├── inv-img └── votingpin.png ├── readme.md ├── server.lua ├── vCode.lua └── votes.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/README.md -------------------------------------------------------------------------------- /vC-vote/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/vC-vote/client.lua -------------------------------------------------------------------------------- /vC-vote/fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/vC-vote/fxmanifest.lua -------------------------------------------------------------------------------- /vC-vote/html/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/vC-vote/html/app.js -------------------------------------------------------------------------------- /vC-vote/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/vC-vote/html/index.html -------------------------------------------------------------------------------- /vC-vote/html/loading-buffering.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/vC-vote/html/loading-buffering.gif -------------------------------------------------------------------------------- /vC-vote/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/vC-vote/html/style.css -------------------------------------------------------------------------------- /vC-vote/inv-img/votingpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/vC-vote/inv-img/votingpin.png -------------------------------------------------------------------------------- /vC-vote/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/vC-vote/readme.md -------------------------------------------------------------------------------- /vC-vote/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/vC-vote/server.lua -------------------------------------------------------------------------------- /vC-vote/vCode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vCodeScripts/vC-vote/HEAD/vC-vote/vCode.lua -------------------------------------------------------------------------------- /vC-vote/votes.json: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------