Scripting Moderators thisdp Posted January 7, 2018 Author Scripting Moderators Share Posted January 7, 2018 Just now, Master_MTA said: hmmm mybe u r right any way thx math.floor = function(num) return num-num%1 end 1 Link to comment
ahmedo01 Posted January 9, 2018 Share Posted January 9, 2018 Best Dx lib I've ever seen. Thanks for this again. 1 1 Link to comment
Scripting Moderators thisdp Posted January 15, 2018 Author Scripting Moderators Share Posted January 15, 2018 (edited) Hello, Everyone. Since DGS was released, DGS has been under development for over half year. What do you think about it? And new idea on DGS? Sadly, I will leave MTA this year, maybe in July. And all service will be suspended. At the same time DGS update system will be deleted in the final version in order to protect your dgs, which means DGS will no longer accept any update. Thanks for your support and company with DGS. Edited January 15, 2018 by thisdp 1 1 Link to comment
anchor Posted January 15, 2018 Share Posted January 15, 2018 (edited) Hello, i got this error after update to the latest version Quote ERROR: inventory\c_player_inventory.lua:68: call: failed to call 'dgs:dgsDxGetMouseEnterGUI' [string "?"] did the function removed? Edited January 15, 2018 by anchor Link to comment
Scripting Moderators thisdp Posted January 15, 2018 Author Scripting Moderators Share Posted January 15, 2018 3 hours ago, anchor said: Hello, i got this error after update to the latest version did the function removed? sry it's my fault, update dgs now 1 Link to comment
Master_MTA Posted January 16, 2018 Share Posted January 16, 2018 15 hours ago, thisdp said: sry it's my fault, update dgs now np bro but i used it with dgseditor so i hope u make it back and the another one dgsDxGetMouseLeaveGUI 1 Link to comment
Scripting Moderators thisdp Posted January 16, 2018 Author Scripting Moderators Share Posted January 16, 2018 (edited) 9 hours ago, Master_MTA said: np bro but i used it with dgseditor so i hope u make it back and the another one dgsDxGetMouseLeaveGUI Good Idea And dgsDxGUI/dgsDx will be replaced by dgs. Edited January 16, 2018 by thisdp Link to comment
Master_MTA Posted January 16, 2018 Share Posted January 16, 2018 6 minutes ago, thisdp said: Good Idea And dgsDxGUI/dgsDx will be replaced by dgs. good Link to comment
Scripting Moderators thisdp Posted January 16, 2018 Author Scripting Moderators Share Posted January 16, 2018 4 hours ago, Master_MTA said: good Done 1 Link to comment
Axel Posted January 17, 2018 Share Posted January 17, 2018 On 15.01.2018 at 04:38, thisdp said: Hello, Everyone. Since DGS was released, DGS has been under development for over half year. What do you think about it? And new idea on DGS? Sadly, I will leave MTA this year, maybe in July. And all service will be suspended. At the same time DGS update system will be deleted in the final version in order to protect your dgs, which means DGS will no longer accept any update. Thanks for your support and company with DGS. You did a good job! I told you in the beginning this project has potential! I wish you the best! 1 Link to comment
Scripting Moderators thisdp Posted January 17, 2018 Author Scripting Moderators Share Posted January 17, 2018 16 minutes ago, Axel said: You did a good job! I told you in the beginning this project has potential! I wish you the best! Thanks. 1 Link to comment
Fanbox Posted January 19, 2018 Share Posted January 19, 2018 (edited) [HELP] Please correct the smeared text, or tell me how to fix it) Thanks. Edited January 19, 2018 by Fanbox Link to comment
Scripting Moderators thisdp Posted January 19, 2018 Author Scripting Moderators Share Posted January 19, 2018 1 hour ago, Fanbox said: [HELP] Please correct the smeared text, or tell me how to fix it) Thanks. Best way to solve is using absolute integer as position and size. Link to comment
Scripting Moderators thisdp Posted January 19, 2018 Author Scripting Moderators Share Posted January 19, 2018 Hey everybody. DGS 3.0 is now released (2018-1-19). I have added something new like dgsAnimTo which supports all kinds of dgs element properties. But I have met with an difficulty. Video and Audio tags don't work in CEF, and is there any method to realize video play? 1 Link to comment
Fanbox Posted January 19, 2018 Share Posted January 19, 2018 (edited) 8 hours ago, thisdp said: 124 272 posts Report post Posted 8 hours ago 10 hours ago, Fanbox said: [HELP] Please correct the smeared text, or tell me how to fix it) Thanks. Best way to solve is using absolute integer as position and size. Show me an example inventory = DGS:dgsDxCreateWindow ( 0.36, 0.28, 0.28, 0.50, "Select your weapons", true ) playerList = DGS:dgsDxCreateGridList (0.12, 0.1, 0.85, 0.85,true,inventory,false,tocolor(0,0,0,0),tocolor(255,255,255,0),tocolor(0,0,0,255),tocolor(0,0,0,255),tocolor(70,70,70,200),tocolor(255,0,0,200)) there are some other options? Edited January 19, 2018 by Fanbox Link to comment
Scripting Moderators thisdp Posted January 19, 2018 Author Scripting Moderators Share Posted January 19, 2018 5 minutes ago, Fanbox said: Show me an example inventory = DGS:dgsDxCreateWindow ( 0.36, 0.28, 0.28, 0.50, "Select your weapons", true ) playerList = DGS:dgsDxCreateGridList (0.12, 0.1, 0.85, 0.85,true,inventory,false,tocolor(0,0,0,0),tocolor(255,255,255,0),tocolor(0,0,0,255),tocolor(0,0,0,255),tocolor(70,70,70,200),tocolor(255,0,0,200)) inventory = dgsCreateWindow ( 0.36, 0.28, 0.28, 0.50, "Select your weapons", true ) playerList = dgsCreateGridList (0.12, 0.1, 0.85, 0.85,true,inventory,false,tocolor(0,0,0,0),tocolor(255,255,255,0),tocolor(0,0,0,255),tocolor(0,0,0,255),tocolor(70,70,70,200),tocolor(255,0,0,200)) dgsGridListAddColumn(playerList,"Player",0.8) for i=1,100 do local row = dgsGridListAddRow(playerList) dgsGridListSetItemText(playerList,row,1,"thisdp") end Any problem? Link to comment
Fanbox Posted January 19, 2018 Share Posted January 19, 2018 3 minutes ago, thisdp said: inventory = dgsCreateWindow ( 0.36, 0.28, 0.28, 0.50, "Select your weapons", true ) playerList = dgsCreateGridList (0.12, 0.1, 0.85, 0.85,true,inventory,false,tocolor(0,0,0,0),tocolor(255,255,255,0),tocolor(0,0,0,255),tocolor(0,0,0,255),tocolor(70,70,70,200),tocolor(255,0,0,200)) dgsGridListAddColumn(playerList,"Player",0.8) for i=1,100 do local row = dgsGridListAddRow(playerList) dgsGridListSetItemText(playerList,row,1,"thisdp") end Any problem? its not work,text so bad( Link to comment
Scripting Moderators thisdp Posted January 19, 2018 Author Scripting Moderators Share Posted January 19, 2018 2 minutes ago, Fanbox said: its not work,text so bad( inventory = dgsCreateWindow ( 0.36, 0.28, 0.28, 0.50, "Select your weapons", true ) playerList = dgsCreateGridList (0.12, 0.1, 0.85, 0.85,true,inventory,false,tocolor(0,0,0,0),tocolor(255,255,255,0),tocolor(0,0,0,100),tocolor(0,0,0,100),tocolor(70,70,70,100),tocolor(255,0,0,100)) dgsGridListAddColumn(playerList,"Player",0.8) for i=1,100 do local row = dgsGridListAddRow(playerList) dgsGridListSetItemText(playerList,row,1,"thisdp") end Link to comment
Fanbox Posted January 19, 2018 Share Posted January 19, 2018 FIX absolute integer as position and size. PLS DGS Link to comment
Scripting Moderators thisdp Posted January 19, 2018 Author Scripting Moderators Share Posted January 19, 2018 17 minutes ago, Fanbox said: its not work,text so bad( updatedgs Link to comment
Fanbox Posted January 19, 2018 Share Posted January 19, 2018 3 minutes ago, thisdp said: updatedgs YOU FIX absolute integer as position and size?)))))) 1 Link to comment
Scripting Moderators thisdp Posted January 19, 2018 Author Scripting Moderators Share Posted January 19, 2018 1 minute ago, Fanbox said: YOU FIX absolute integer as position and size?)))))) Wait, it seems this problem is caused by render target Link to comment
Fanbox Posted January 19, 2018 Share Posted January 19, 2018 1 minute ago, thisdp said: Wait, it seems this problem is caused by render target You best bro im Wait)) 1 Link to comment
Scripting Moderators thisdp Posted January 19, 2018 Author Scripting Moderators Share Posted January 19, 2018 3 minutes ago, Fanbox said: You best bro im Wait)) fixed, updatedgs 1 Link to comment
Fanbox Posted January 19, 2018 Share Posted January 19, 2018 (edited) 12 minutes ago, thisdp said: fixed, updatedgs YEEEEEEEEEEp YOU BEST !!!!! Edited January 19, 2018 by Fanbox Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now