This is a documentation for Board Game Arena: play board games online !

ผลต่างระหว่างรุ่นของ "SandboxScripts"

จาก Board Game Arena
ไปยังการนำทาง ไปยังการค้นหา
ไม่มีความย่อการแก้ไข
บรรทัดที่ 24: บรรทัดที่ 24:


  function onMyClick(id)
  function onMyClick(id)
     addToBgaLog("Hello world! I just clicked on element "..id)
     addToBgaLog("Hello world! You just clicked on element "..id..". Congrats!")
  end
  end


Save & publish your project, starts a test session, click on the previous element : your message appears in the log on the right!
Save & publish your project, starts a test session, click on the previous element : your message appears in the log on the right!


= Functions you can use in your Lua Sandbox scripts=
= Functions you can use in your Lua Sandbox scripts=


==addToBgaLog( txt )==
==addToBgaLog( txt )==

รุ่นแก้ไขเมื่อ 16:13, 12 ธันวาคม 2559

This is the reference of functions you can call from your Sandbox scripts.

Lua programming language

Lua is a very simple & generic script language, very close from C or PHP.

If you are familiar with most used languages, you can learn Lua basic structures in few minutes (for example from this page : https://awesome.naquadah.org/wiki/The_briefest_introduction_to_Lua).

Using Lua, you can write scripts to automate moves for your Sandbox games & provide rules reinforcement.


Sandbox Scripts Hello World

From Sandbox editor "interface view" tab, select an element, and access to its property (top right icon).

Go to "Scripts (advanced)" section.

In front of "When this element is clicked", enter "onMyClick".

Close the window. Go to "script view" tab.

Enter the following :

function onMyClick(id)
   addToBgaLog("Hello world! You just clicked on element "..id..". Congrats!")
end

Save & publish your project, starts a test session, click on the previous element : your message appears in the log on the right!

Functions you can use in your Lua Sandbox scripts

addToBgaLog( txt )

เข้าถึงจาก "http:///index.php?title=SandboxScripts&oldid=2095"