• GMod - What are you working on? October 2014 (#38)
    706 replies, posted
wanting feedback != being rating whore posting about rating whore == being rating whore [editline]3rd October 2014[/editline] just doing small things [media]http://www.youtube.com/watch?v=Zun0W___04Q[/media]
[QUOTE=CoreBase;46138348]Stop being a rating whore.[/QUOTE] You are a moron. I don't give a crap about ratings, if you could read you would know I wanted to pick the best theme.
[QUOTE=rebel1324;46139200] just doing small things [media]http://www.youtube.com/watch?v=Zun0W___04Q[/media][/QUOTE] that is neat
trying to replicate gta mission marker [media]http://www.youtube.com/watch?v=rqZsbXn8ab8&feature=autoshare[/media]
I saw the way you were doing it and I feel that it would be just as well to use CS Models? Why did you choose meshes?
[QUOTE=BFG9000;46140851]I saw the way you were doing it and I feel that it would be just as well to use CS Models? Why did you choose meshes?[/QUOTE] I don't want to make the players download god damn model for that single shit [editline]4th October 2014[/editline] now only thing I have to figure out is make it not visible thru the wall.
Started working on a "Jukebox" for [URL]http://www.moronyard.com[/URL] [IMG]http://stebbzor.sexy/i/5106ToC8381.jpg[/IMG] It's only a gui for now though.
[QUOTE=Stebbzor;46141299]Started working on a "Jukebox" for [url=http://www.moronyard.com]MoronYard[/url] [img]http://stebbzor.sexy/i/5106ToC8381.jpg[/img] It's only a gui for now though.[/QUOTE] that gui looks great the hyperlink is incorrect btw @ MoronYard
Played with the minidumps to get players's specs (GPU and OS version) [IMG]http://puu.sh/bXNax/977d87b5c9.png[/IMG]
[QUOTE=ExtReMLapin;46141412]Played with the minidumps to get players's specs (GPU and OS version) [IMG]http://puu.sh/bXLxv/db7f382dfd.jpg[/IMG][/QUOTE] time to see if people are poor
[QUOTE=ExtReMLapin;46141412]Played with the minidumps to get players's specs (GPU and OS version) [IMG]http://puu.sh/bXLxv/db7f382dfd.jpg[/IMG][/QUOTE] get on my level [img]https://dl.dropboxusercontent.com/u/7290193/Screenshots/Garrysmod/getonmylevel.png[/img]
I give my thanks to failcake so gta [t]http://i.imgur.com/R4F30Zn.png[/t]
Spammer :v:
[QUOTE=rebel1324;46141620]I give my thanks to failcake so gta [t]http://i.imgur.com/R4F30Zn.png[/t][/QUOTE] How long before a complete gta:sa remake in garry's mod? :v:
[QUOTE=!cake;46141615]get on my level [img]https://dl.dropboxusercontent.com/u/7290193/Screenshots/Garrysmod/getonmylevel.png[/img][/QUOTE] That's actually pretty fucking cool, how did you grab the information from each client?
[QUOTE=rebel1324;46141620]I give my thanks to failcake so gta [t]http://i.imgur.com/R4F30Zn.png[/t][/QUOTE] GTA San Andreas player/NPC marker should be more like this. That one is usually used for start missions. [img]http://i.imgur.com/vlgL4w7.png[/img]
[QUOTE=kpjVideo;46142185]That's actually pretty fucking cool, how did you grab the information from each client?[/QUOTE] hes most likely using his [url=http://facepunch.com/showthread.php?t=1245803]gcompute ide[/url] for doing that.
[QUOTE=KillerKo4565;46142264]GTA San Andreas player/NPC marker should be more like this. That one is usually used for start missions. [img]http://i.imgur.com/vlgL4w7.png[/img][/QUOTE] yeah the one rebel did is normally static on the ground, i think it's still cool c:
networked whiteboard (no decrease in fps) [img]http://i.gyazo.com/0d4cf2bc0f6c20ae2c022b075fa02bc3.png[/img] [img]http://i.gyazo.com/06c9b305eabd6077e6c52acb8ef729f9.png[/img]
[QUOTE=kpjVideo;46142185]That's actually pretty fucking cool, how did you grab the information from each client?[/QUOTE] As i said [QUOTE=ExtReMLapin;46141412]Played with the minidumps to get players's specs (GPU and OS version) [IMG]http://puu.sh/bXNax/977d87b5c9.png[/IMG][/QUOTE] The informations are stored into the minidumps. You know... the net library.
[QUOTE=!cake;46141615]get on my level [img]https://dl.dropboxusercontent.com/u/7290193/Screenshots/Garrysmod/getonmylevel.png[/img][/QUOTE] Dr Barber??? [IMG]http://i.gyazo.com/da4e935e196ed02490c882261723e002.png[/IMG] Edit: Dumbest page king ever, I am honored.
In the process of recoding mysqloo. Hopefully my version is going to fix all of the horrible problems mysqloo currently has. It also brings new features like prepared statements. [LUA] local query = Database:prepare("UPDATE users SET online = ?, lastplayed = ?, nick = ? WHERE steamid = ?") query.onSuccess = function(qu, data) print("success") end query.onError = function(qu, err) print(err) end query:setBoolean(1, true) query:setNumber(2, os.time()) query:setString(3, player.GetAll()[1]:Nick()) query:setString(4, player.GetAll()[1]:SteamID()) query:start() [/LUA] And let's face it, you all freaking suck at escaping strings, so hopefully that is going to help. (It's really not possible to make it easier and safer)
Holy shit prepared statements
[QUOTE=syl0r;46142968]-snip-[/QUOTE] Not sure how people forget to escape strings, although that's why I wrote a [URL="https://github.com/alexgrist/GLua-MySQL-Wrapper"]wrapper[/URL] for current mysqloo.
[QUOTE=Alex_grist;46143412]Not sure how people forget to escape strings, although that's why I wrote a [URL="https://github.com/alexgrist/GLua-MySQL-Wrapper"]wrapper[/URL] for current mysqloo.[/QUOTE] I think they just don't know what they are doing. I would say that most gmod coders don't really know that much about security and networking. The best example here is RocketMania. He designs really good interfaces. But he just doesn't have a clue about security (especially sql) The sad thing is that it is so easy to prevent (and find) sql injections though. Just look at RocketManias current AdvancedTracker addon: [QUOTE] Started scanning file 'test.lua' from workshopaddon -1 Found security problem 'SQL Injection' in file WorkshopCrawler\test.lua in line 42 Found security problem 'SQL Injection' in file WorkshopCrawler\test.lua in line 45 Found security problem 'SQL Injection' in file WorkshopCrawler\test.lua in line 187 Found security problem 'SQL Injection' in file WorkshopCrawler\test.lua in line 189 Found security problem 'SQL Injection' in file WorkshopCrawler\test.lua in line 235 Done scanning file test.lua [/QUOTE] This was scanned using my own tool that can detect sql injectons. And I can guarantuee you that every single of the lines listed has an sql injection ;)
[QUOTE=rebel1324;46140963]I don't want to make the players download god damn model for that single shit [editline]4th October 2014[/editline] now only thing I have to figure out is make it not visible thru the wall.[/QUOTE] Why would you need to? All you really have to do is make two cs models and use PHX
[QUOTE=syl0r;46143842]I think they just don't know what they are doing. I would say that most gmod coders don't really know that much about security and networking. The best example here is RocketMania. He designs really good interfaces. But he just doesn't have a clue about security (especially sql) The sad thing is that it is so easy to prevent (and find) sql injections though. Just look at RocketManias current AdvancedTracker addon: This was scanned using my own tool that can detect sql injectons. And I can guarantuee you that every single of the lines listed has an sql injection ;)[/QUOTE] He doesn't know much about optimization either, considering he creates over 1680 fonts in his car dealer addons... :v:
[QUOTE=syl0r;46143842]I think they just don't know what they are doing. I would say that most gmod coders don't really know that much about security and networking. The best example here is RocketMania. He designs really good interfaces. But he just doesn't have a clue about security (especially sql) The sad thing is that it is so easy to prevent (and find) sql injections though. Just look at RocketManias current AdvancedTracker addon: This was scanned using my own tool that can detect sql injectons. And I can guarantuee you that every single of the lines listed has an sql injection ;)[/QUOTE] I would say if you don't know how to escape strings, you shouldn't be using MySQL.
[QUOTE=Alex_grist;46144287]I would say if you don't know how to escape strings, you shouldn't be using MySQL.[/QUOTE] Or if you don't know how to normalize a database. Whenever I see a serialized string in a table...
[QUOTE=rebel1324;46140598]trying to replicate gta mission marker [/QUOTE] Do like! That already looks exactly like the marker in GTA San Andreas! (well, except without the color, but I scrolled down some more and saw it in red. The ones I remember were yellow, though?)
Sorry, you need to Log In to post a reply to this thread.