Jump to content

export functions | Dx Text


Recommended Posts

Posted

Hello Guys Am Trying To Make My First Script With "export functions"

The Problem Is I Dont Know Much About It But I Have Problem Now How Can I Make The Dx Text "Apparent To All Screen Sizes"

This What I Want Now And Will Complete Later About The [export functions] I Hope Some One Will Help Me On This

Thank's In Advance

Mr.Pres[T]ege

#

Posted

It's actually really simple, on your meta.xml you add this:

function="myFunctionName" type="myScriptType(server or client)" /> 

Then on your script you do:

function myFunctionName ( ) 
end 

Posted
It's actually really simple, on your meta.xml you add this:
function="myFunctionName" type="myScriptType(server or client)" /> 

Then on your script you do:

function myFunctionName ( ) 
end 

Thank's Man i really Understand the exporting !

Posted

can i make a relative pos with dx text i mean can i make image in gui Editor and take the position and replace it with dx position? Or impossible? Thanks in advance.

Posted
   function AbsoluteToRelative( X, Y ) 
            local rX, rY = guiGetScreenSize() 
            local x = X/rX 
            local y = Y/rY 
            return x, y 
    end 
    -- Example made by laserlaser 

Posted
   function AbsoluteToRelative( X, Y ) 
            local rX, rY = guiGetScreenSize() 
            local x = X/rX 
            local y = Y/rY 
            return x, y 
    end 
    -- Example made by laserlaser 

Exactly thanks!!

Posted
It's actually really simple, on your meta.xml you add this:
function="myFunctionName" type="myScriptType(server or client)" /> 

Then on your script you do:

function myFunctionName ( ) 
end 

Also to call this export you'd need something like:

 

exports.ResourceName:myFunctionName ( "The text you wish to output", R, G, B )  

Posted
It's actually really simple, on your meta.xml you add this:
function="myFunctionName" type="myScriptType(server or client)" /> 

Then on your script you do:

function myFunctionName ( ) 
end 

Also to call this export you'd need something like:

  
exports.ResourceName:myFunctionName ( "The text you wish to output", R, G, B ) 
  

Thanks

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...