Jump to content

Recommended Posts

  • Moderators
Posted (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. :D

Edited by thisdp
Posted (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 by anchor
  • Moderators
Posted
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

Posted
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

Skype 01100001 01101100 01101001 01011111 01101101 01110100 00110001 00111001 00111001 00111001

every thing is gonna be alright

every thing is gonna be okay

it's gonna be a good good life

that's what my therapist say

  • Moderators
Posted (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 :D

And dgsDxGUI/dgsDx will be replaced by dgs.

Edited by thisdp
Posted
6 minutes ago, thisdp said:

Good Idea :D

And dgsDxGUI/dgsDx will be replaced by dgs.

good

Skype 01100001 01101100 01101001 01011111 01101101 01110100 00110001 00111001 00111001 00111001

every thing is gonna be alright

every thing is gonna be okay

it's gonna be a good good life

that's what my therapist say

Posted
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. :D

You did a good job! I told you in the beginning this project has potential! I wish you the best!

  • Moderators
Posted
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. :D

  • Moderators
Posted
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.

  • Moderators
Posted

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?

Posted (edited)
8 hours ago, thisdp said:
  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 by Fanbox
  • Moderators
Posted
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?

Posted
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(

  • Moderators
Posted
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

 

  • Moderators
Posted
1 minute ago, Fanbox said:

YOU FIX absolute integer as position and size?))))))

Wait, it seems this problem is caused by render target

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...