User:A.Noniem: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "Hello my name is A.Noniem")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
Hello my name is A.Noniem
Hello my name is A.Noniem. I am a scripter and a mapper and here is some of my stuff i made :
 
== My scripts ==
 
 
=== Finished scripts ===
 
ZenoS's camera tool V2 : https://www.youtube.com/watch?v=eGCnONabcN0
 
Download on mtasa.com  : http://community.mtasa.com/index.php?p=resources&s=details&id=5060]
 
 
=== Work in progress scripts ===
 
GraphCreatorV2 for making graphs in mta.
 
http://tinypic.com/r/zvojz8/8
Orange and pink lines are trendlines, made from the data of the green line
 
GUI on the left side is little script that i made to test exports in real time.
 
==== Client side functions ====
 
<section name="Client" class="client" show="true">
Adds or removes graph with the data needed.
<syntaxhighlight lang="lua">
  drawGraph(string state, int x, int y, int x size, int y size, int x min, int x staps, int x visable steps, int x amount steps, int y min, int y staps, int y visable steps, int y amount steps, table graphTypeData, table graphTitleData, table graphColors, table trendLineData)
</syntaxhighlight>
Returns true when a graph is active, false otherwise.
<syntaxhighlight lang="lua">
  isGraphShowing()
</syntaxhighlight>
Add data to active graphs.
<syntaxhighlight lang="lua">
  addGraphTable(table table )
</syntaxhighlight>
Removes a graph.
<syntaxhighlight lang="lua">
  removeGraphTable(int number of graph)
</syntaxhighlight>
Makes a trendline of a graph and adds it to the active graphs.
<syntaxhighlight lang="lua">
  addGraphTrendLine(string type, int number of graph to make trendline with, int stepsize, string color)
</syntaxhighlight>
Removes a trendline from the active graphs.(Leave blank to remove all trendlines.)
<syntaxhighlight lang="lua">
  removeGraphTrendLine(int number of graph)
</syntaxhighlight>
When graph is turned on, it will make an animation.
<syntaxhighlight lang="lua">
  fadeGraphIn(bool state, int fade time, string what to fade)
</syntaxhighlight>
When graph is turned off, it will make an animation.
<syntaxhighlight lang="lua">
  fadeGraphOut(bool state, int fade time, string what to fade)
</syntaxhighlight>
Adds a title to the graph.
<syntaxhighlight lang="lua">
  addGraphTitle(string graph title, string font, int size, string color, bool postGui, string align horizontal, string align vertical)
</syntaxhighlight>
Makes all the active graphs one type of graph.(bargraph, linegraph or dotgraph)
<syntaxhighlight lang="lua">
  setGraphType(string type)
</syntaxhighlight>
Returns table with x and y coordinates. If left blank it will return a table with all active graphs.
<syntaxhighlight lang="lua">
  getGraphTable(int number of graph)
</syntaxhighlight>
Sets base color of components of the graph.
<syntaxhighlight lang="lua">
  setGraphColors(string background color, string axel color, string line color, string dot color, string text color, string axel text color, string horizontal grid color, string vertical grid color, string highlight line color, string highlight bar color, string highlight dot color, string graph title color)
</syntaxhighlight>
 
</section>
 
 
 
 
 
==== Server side functions ====
<section name="Server" class="server" show="true">
Adds or removes graph with the data needed.
<syntaxhighlight lang="lua">
  drawGraph(player, string state, int x, int y, int x size, int y size, int x min, int x staps, int x visable steps, int x amount steps, int y min, int y staps, int y visable steps, int y amount steps, table graphTypeData, table graphTitleData, table graphColors, table trendLineData)
</syntaxhighlight>
Returns true when a graph is active, false otherwise.
<syntaxhighlight lang="lua">
  isGraphShowing(player)
</syntaxhighlight>
Add data to active graphs.
<syntaxhighlight lang="lua">
  addGraphTable(player, table table )
</syntaxhighlight>
Removes a graph.
<syntaxhighlight lang="lua">
  removeGraphTable(player, int number of graph)
</syntaxhighlight>
Makes a trendline of a graph and adds it to the active graphs.
<syntaxhighlight lang="lua">
  addGraphTrendLine(player, string type, int number of graph to make trendline with, int stepsize, string color)
</syntaxhighlight>
Removes a trendline from the active graphs.(Leave blank to remove all trendlines.)
<syntaxhighlight lang="lua">
  removeGraphTrendLine(player, int number of graph)
</syntaxhighlight>
When graph is turned on, it will make an animation.
<syntaxhighlight lang="lua">
  fadeGraphIn(player, bool state, int fade time, string what to fade)
</syntaxhighlight>
When graph is turned off, it will make an animation.
<syntaxhighlight lang="lua">
  fadeGraphOut(player, bool state, int fade time, string what to fade)
</syntaxhighlight>
Adds a title to the graph.
<syntaxhighlight lang="lua">
  addGraphTitle(player, string graph title, string font, int size, string color, bool postGui, string align horizontal, string align vertical)
</syntaxhighlight>
Makes all the active graphs one type of graph.(bargraph, linegraph or dotgraph)
<syntaxhighlight lang="lua">
  setGraphType(player, string type)
</syntaxhighlight>
Returns table with x and y coordinates. If left blank it will return a table with all active graphs.
<syntaxhighlight lang="lua">
  getGraphTable(player, int number of graph)
</syntaxhighlight>
Sets base color of components of the graph.
<syntaxhighlight lang="lua">
  setGraphColors(player, string background color, string axel color, string line color, string dot color, string text color, string axel text color, string horizontal grid color, string vertical grid color, string highlight line color, string highlight bar color, string highlight dot color, string graph title color)
</syntaxhighlight>
 
</section>
 
== Maps i made: ==
 
=== DM maps ===
[DM]A.Noniem - vol 1 - For the first time    : https://www.youtube.com/watch?v=DOr9OQLsZN0
 
[DM]A.Noniem - vol 2 - Boombastic            : https://www.youtube.com/watch?v=cTobrXyDYxY
 
[DM]A.Noniem ft. Driv3R - Different places  : https://www.youtube.com/watch?v=wcpwWAzHQoA
 
[DM]A.Noniem ft. Driv3R - To a higher level  : https://www.youtube.com/watch?v=E_tXSS5sTSM
 
[DM]A.Noniem - The night on the lost island  : https://www.youtube.com/watch?v=w6Wjz4-7HWc
 
 
=== FUN maps ===
[Fun]A.Noniem - The flood los Santos : https://www.youtube.com/watch?v=wjsyOPHK-T4
 
[Fun]A.Noniem - Pacman : https://www.youtube.com/watch?v=5eR4NHAbh-s
 
[Fun]A.Noniem - Takeshi's castle - part 1 : https://www.youtube.com/watch?v=tmn4TeLQZUc
 
 
=== RACE maps ===
 
[Race]A.Noniem - Sail : http://youtu.be/ORj8TdZOYNE
 
[Race/Fun]A.Noniem - NFS drag race :https://www.youtube.com/watch?v=9a8evQFxqh0

Latest revision as of 11:28, 19 April 2014

Hello my name is A.Noniem. I am a scripter and a mapper and here is some of my stuff i made :

My scripts

Finished scripts

ZenoS's camera tool V2 : https://www.youtube.com/watch?v=eGCnONabcN0

Download on mtasa.com  : http://community.mtasa.com/index.php?p=resources&s=details&id=5060]


Work in progress scripts

GraphCreatorV2 for making graphs in mta.

http://tinypic.com/r/zvojz8/8

Orange and pink lines are trendlines, made from the data of the green line

GUI on the left side is little script that i made to test exports in real time.

Client side functions

Click to collapse [-]
Client

Adds or removes graph with the data needed.

  drawGraph(string state, int x, int y, int x size, int y size, int x min, int x staps, int x visable steps, int x amount steps, int y min, int y staps, int y visable steps, int y amount steps, table graphTypeData, table graphTitleData, table graphColors, table trendLineData)

Returns true when a graph is active, false otherwise.

  isGraphShowing()

Add data to active graphs.

  addGraphTable(table table )

Removes a graph.

  removeGraphTable(int number of graph)

Makes a trendline of a graph and adds it to the active graphs.

  addGraphTrendLine(string type, int number of graph to make trendline with, int stepsize, string color)

Removes a trendline from the active graphs.(Leave blank to remove all trendlines.)

  removeGraphTrendLine(int number of graph)

When graph is turned on, it will make an animation.

  fadeGraphIn(bool state, int fade time, string what to fade)

When graph is turned off, it will make an animation.

  fadeGraphOut(bool state, int fade time, string what to fade)

Adds a title to the graph.

  addGraphTitle(string graph title, string font, int size, string color, bool postGui, string align horizontal, string align vertical)

Makes all the active graphs one type of graph.(bargraph, linegraph or dotgraph)

  setGraphType(string type)

Returns table with x and y coordinates. If left blank it will return a table with all active graphs.

  getGraphTable(int number of graph)

Sets base color of components of the graph.

  setGraphColors(string background color, string axel color, string line color, string dot color, string text color, string axel text color, string horizontal grid color, string vertical grid color, string highlight line color, string highlight bar color, string highlight dot color, string graph title color)



Server side functions

Click to collapse [-]
Server

Adds or removes graph with the data needed.

  drawGraph(player, string state, int x, int y, int x size, int y size, int x min, int x staps, int x visable steps, int x amount steps, int y min, int y staps, int y visable steps, int y amount steps, table graphTypeData, table graphTitleData, table graphColors, table trendLineData)

Returns true when a graph is active, false otherwise.

  isGraphShowing(player)

Add data to active graphs.

  addGraphTable(player, table table )

Removes a graph.

  removeGraphTable(player, int number of graph)

Makes a trendline of a graph and adds it to the active graphs.

  addGraphTrendLine(player, string type, int number of graph to make trendline with, int stepsize, string color)

Removes a trendline from the active graphs.(Leave blank to remove all trendlines.)

  removeGraphTrendLine(player, int number of graph)

When graph is turned on, it will make an animation.

  fadeGraphIn(player, bool state, int fade time, string what to fade)

When graph is turned off, it will make an animation.

  fadeGraphOut(player, bool state, int fade time, string what to fade)

Adds a title to the graph.

  addGraphTitle(player, string graph title, string font, int size, string color, bool postGui, string align horizontal, string align vertical)

Makes all the active graphs one type of graph.(bargraph, linegraph or dotgraph)

  setGraphType(player, string type)

Returns table with x and y coordinates. If left blank it will return a table with all active graphs.

  getGraphTable(player, int number of graph)

Sets base color of components of the graph.

  setGraphColors(player, string background color, string axel color, string line color, string dot color, string text color, string axel text color, string horizontal grid color, string vertical grid color, string highlight line color, string highlight bar color, string highlight dot color, string graph title color)

Maps i made:

DM maps

[DM]A.Noniem - vol 1 - For the first time  : https://www.youtube.com/watch?v=DOr9OQLsZN0

[DM]A.Noniem - vol 2 - Boombastic  : https://www.youtube.com/watch?v=cTobrXyDYxY

[DM]A.Noniem ft. Driv3R - Different places  : https://www.youtube.com/watch?v=wcpwWAzHQoA

[DM]A.Noniem ft. Driv3R - To a higher level  : https://www.youtube.com/watch?v=E_tXSS5sTSM

[DM]A.Noniem - The night on the lost island  : https://www.youtube.com/watch?v=w6Wjz4-7HWc


FUN maps

[Fun]A.Noniem - The flood los Santos : https://www.youtube.com/watch?v=wjsyOPHK-T4

[Fun]A.Noniem - Pacman : https://www.youtube.com/watch?v=5eR4NHAbh-s

[Fun]A.Noniem - Takeshi's castle - part 1 : https://www.youtube.com/watch?v=tmn4TeLQZUc


RACE maps

[Race]A.Noniem - Sail : http://youtu.be/ORj8TdZOYNE

[Race/Fun]A.Noniem - NFS drag race :https://www.youtube.com/watch?v=9a8evQFxqh0