User Tools

Site Tools


scripting:samples:basicbuilding

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

scripting:samples:basicbuilding [2020/01/28 17:50] – external edit 127.0.0.1scripting:samples:basicbuilding [2020/02/01 19:44] (current) mit
Line 1: Line 1:
 ===== Simple 'Gather Building' Sample script ===== ===== Simple 'Gather Building' Sample script =====
-Here is a simple script for a 'Gather Building' - i.e. One where the user accesses a 'building' (doesnt have to be an actual building model of course, it could be a rock or a tree or a NPC..) and it gives the user a particular item (up to a defined limit). +Here is a simple script for a 'Gather Building' - i.e. One where the user accesses a 'building' (doesn'have to be an actual building model of course, it could be a rock or a tree or a NPC..) and it gives the user a particular item (up to a defined limit). 
  
-To use it on your own world, set a building in the Buildings Editor to be a 'scripted-nowindow' type, then modify the 'AccessBuildingEvent with the building number and the item you want to award. +To use it on your own world, set a building in the Buildings Editor to be a 'scripted-nowindow' type, then modify the '$kGatherBuildingNum' with the building-type number and '$kGatherItem' with the item you want to award. 
  
 <code> <code>
 $kMaxAmountOfItemToGather = 3 $kMaxAmountOfItemToGather = 3
 +$kGatherBuildingNum = 5
 +$kGatherItem = "Berries"
  
 //-------------------------------------------------- //--------------------------------------------------
-//------ Access script for Building Type 5 = Berries+//------ Access building script
 //-------------------------------------------------- //--------------------------------------------------
-Event( "AccessBuilding", "5" )+Event( "AccessBuilding", "$kGatherBuildingNum" )
 { {
- $ret = StandardGatherDisplay( "Berries" );+ $ret = StandardGatherDisplay( $kGatherItem );
 } }
  
scripting/samples/basicbuilding.1580255416.txt.gz · Last modified: 2020/01/28 17:50 by 127.0.0.1

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki