author | henrik.rostedt |
Sat, 13 Nov 2010 23:02:24 +0000 | |
changeset 30 | 43e5101de029 |
parent 29 | 19a3182cac9d |
child 31 | e713a5d2a7f9 |
permissions | -rw-r--r-- |
29 | 1 |
#summary Guide to writing Lua scripts in Hedgewars. |
2 |
||
30
43e5101de029
Edited wiki page LuaGuide through web user interface.
henrik.rostedt
parents:
29
diff
changeset
|
3 |
This is both an introduction to Lua scripting in Hedgewars and a guide for more advanced control over the game and gears. |
43e5101de029
Edited wiki page LuaGuide through web user interface.
henrik.rostedt
parents:
29
diff
changeset
|
4 |
|
43e5101de029
Edited wiki page LuaGuide through web user interface.
henrik.rostedt
parents:
29
diff
changeset
|
5 |
== What is a Lua script == |
29 | 6 |
|
30
43e5101de029
Edited wiki page LuaGuide through web user interface.
henrik.rostedt
parents:
29
diff
changeset
|
7 |
A Lua script is used to make the game behave different by giving the Hedgewars engine different command. The script gets called by the engine on different events and the script tells the engine what to do. |
43e5101de029
Edited wiki page LuaGuide through web user interface.
henrik.rostedt
parents:
29
diff
changeset
|
8 |
|
43e5101de029
Edited wiki page LuaGuide through web user interface.
henrik.rostedt
parents:
29
diff
changeset
|
9 |
Missions and Training are the parts of Hedgewars that are scripted. Try them out and get a feel of what scripted maps is. |