Search the Commands

Home  All  a  b  c  d  e  f  g  h  i  j  k  l  m  n  o  p  q  r  s  t  u  v  w  x  y  z 

Details for command setd:
 
* setd "variable name",<value>;
 
Works almost identical as set, just that the variable name is identified as a string,
thus can be constructed dynamically.

This command is equivalent to:
set getd("variable name"),<value>;

Examples:

> set $var$, "Poporing";
> setd "$" + $var$ + "123$", "Poporing is cool";
> mes $Poporing123$;
Mes will print out: Poporing is cool.
> set @str$,"Poring";
> setd "@str$","Poporing";
> mes @str$;
the message will show Poporing.

Valid XHTML 1.0 Strict Valid CSS!