DGS Custom Plugin: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
===What is?===
==What is?==
DGS has basic elements and plugins. Plugins in DGS are something that can be used like normal DGS elements, can be applied to a DGS elements, or can interact with DGS elements...
DGS has basic elements and plugins. Plugins in DGS are something that can be used like normal DGS elements, can be applied to a DGS elements, or can interact with DGS elements...


===Why?===
==Why?==
In DGS, we have a lot of basic elements and some plugins. But when it comes to more complicated things which can be implemented with dx functions easily, using existing DGS elements and plguins seems to be strenuous.
In DGS, we have a lot of basic elements and some plugins. But when it comes to more complicated things which can be implemented with dx functions easily, using existing DGS elements and plguins seems to be strenuous.


Line 9: Line 9:
This document is for creating custom plugins that can implement complicated dx draws, which are also regarded as DGS elements. This means, your plugins will be able to support all of the basic functions of DGS.
This document is for creating custom plugins that can implement complicated dx draws, which are also regarded as DGS elements. This means, your plugins will be able to support all of the basic functions of DGS.


===How?===
==How?==
*To get started, you must know how to use DGS. ''Or close this page and learn [[Resource:dgs|DGS]].''
*To get started, you must know how to use DGS. ''Or close this page and learn [[Resource:dgs|DGS]].''
*The following tutorial shows how to create a custom DGS plugin example by hand.
*The following tutorial shows how to create a custom DGS plugin example by hand.
*DGS environment is required.
===Create A File===

Revision as of 11:00, 14 February 2021

What is?

DGS has basic elements and plugins. Plugins in DGS are something that can be used like normal DGS elements, can be applied to a DGS elements, or can interact with DGS elements...

Why?

In DGS, we have a lot of basic elements and some plugins. But when it comes to more complicated things which can be implemented with dx functions easily, using existing DGS elements and plguins seems to be strenuous.

To Solve The Problem:

This document is for creating custom plugins that can implement complicated dx draws, which are also regarded as DGS elements. This means, your plugins will be able to support all of the basic functions of DGS.

How?

  • To get started, you must know how to use DGS. Or close this page and learn DGS.
  • The following tutorial shows how to create a custom DGS plugin example by hand.
  • DGS environment is required.

Create A File