Difference between revisions of "Getd"

From Hercules Wiki
Jump to: navigation, search
(Created page with "Category:Script_Command ==Syntax== * getd("<variable name>"); ==Description== Returns a reference to a variable, the name can be constructed dynamically. Refer to [[se...")
 

Latest revision as of 18:04, 3 October 2013

Syntax

  • getd("<variable name>");

Description

Returns a reference to a variable, the name can be constructed dynamically. Refer to setd for usage.

This can also be used to set an array dynamically:

 setarray getd(".array[0]"), 1, 2, 3, 4, 5;

Examples

set .@mob_id, 1002;
dispbottom getd(".prize_" + .@mob_id); // displays the value of .prize_1002