Examples of identifySimple()


Examples of net.aufdemrand.denizen.objects.dScript.identifySimple()

            if (script != null)
                context.put("script", script);
            List<String> events = new ArrayList<String>();
            events.add("script generates error");
            if (script != null)
                events.add(script.identifySimple() + " generates error");
            ScriptEntry entry = (source != null ? source.getLastEntryExecuted(): null);
            String Determination = EventManager.doEvents(events, (entry != null ? ((BukkitScriptEntryData)entry.entryData).getNPC(): null),
                    (entry != null ? ((BukkitScriptEntryData)entry.entryData).getPlayer(): null), context, true);
            ThrowErrorEvent = true;
            if (Determination.equalsIgnoreCase("CANCELLED"))
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.