doCommand: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 8: | Line 8: | ||
=== Details === | === Details === | ||
---- | ---- | ||
; doCommand (<[[Console Commands|console commands]]>) { | ; doCommand (<[[Console Commands|console commands]]>) { | ||
Line 15: | Line 14: | ||
== Example == | == Example == | ||
* Talk to NPC when your HP is lower than 5% and you are on prontera. | * Talk to NPC when your HP is lower than 5% and you are on prontera. | ||
doCommand talknpc 87 132 c r0 c { | doCommand talknpc 87 132 c r0 c { |
Revision as of 01:43, 15 December 2009
Enables auto use of specified console commands when the conditions defined in the block are met.
Syntax
doCommand <console commands> { # Self Conditions }
Details
- doCommand (<console commands>) {
- Specifies the console commands that are going to be run.
Example
- Talk to NPC when your HP is lower than 5% and you are on prontera.
doCommand talknpc 87 132 c r0 c { hp < 5% inMap prontera }