mirror of
https://bitbucket.org/theswgsource/dsrc-1.2.git
synced 2026-07-14 00:01:32 -04:00
19 lines
466 B
Java
Executable File
19 lines
466 B
Java
Executable File
package script.working;
|
|
|
|
import script.deltadictionary;
|
|
import script.obj_id;
|
|
|
|
public class scriptvars extends script.base_script
|
|
{
|
|
public scriptvars()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
deltadictionary dctScriptVars = self.getScriptVars();
|
|
debugSpeakMsg(self, "ScriptVars are " + dctScriptVars.toString());
|
|
detachScript(self, "working.scriptvars");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|