User Tools

Site Tools


scripting:samples:simpletask

This is an old revision of the document!


Example using the Task system

The 'Task' system is used to block the player for a period of time while they're occupied with some task. For example, you may want the player to have to wait for 30 seconds while they are crafting an item before it is added to their inventory. Here is a simple example demonstrating this system, that is triggered when the player uses the 'Flour' item:

Event("UseItem", "Flour" )
{
    *dotask %PLAYER% 40 Baking Bread
}

Event( "CustomTaskStart", "40" )
{
    // Specify that the task will take 30 seconds to complete..
    PlayerTaskStartSetTime( 30 )
}

Event( "CustomTaskComplete", "40" )
{
    *grantitem %PLAYER% 1 Bread
}
scripting/samples/simpletask.1689191693.txt.gz · Last modified: 2023/07/12 14:54 by mit

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