VariableTriggers

Make your own plugin like features and more using VariableTriggers
This is a very powerful plugin that has unlimited potential. Create triggers that run lines of script when a player Clicks or Walks on a block (dirt, door, switch, trigger, torch, any block) or Create Event Triggers such as PlayerDeath , EntityDeath, BlockBreak, BlockPlaced, Join, Quit, Respawn, Interact and EntitySpawn that also run scripts. You can define Area Triggers and Command Triggers as well. You can use Dynamic Object variables and conditional IF and ELSE statements in the scripts. You can run any command that a player or OP can run and many speacial built-in commands to Teleport, Spawn Entities, Play Effects Visual or Sound, Set Blocks, Toggle Blocks, Check Players Heath and much more!. The scripts are executed on their own threads to take the strain off of the main server thread.
















-
View User Profile
-
Send Message
Posted Apr 5, 2013@midnightfang22
Well ok, no I got no idea whats causing the errors with the delobj.
-
View User Profile
-
Send Message
Posted Apr 5, 2013@H8llfire
tp issue. Didn't know there was an async issue with delobj; what is that about?
@John__B
I saw the ticket update.
@nxtguy
There isn't a script command internally made to do this. You would essentially need another plugin to add the effects (or wait until bukkit adds the 1.5 /effect command) and basically use @CMDCON or @CMDOP to run the command on that player.
-
View User Profile
-
Send Message
Posted Apr 4, 2013@midnightfang22
I figured out exactly what was breaking it in spigot.
In 718 http://ci.md-5.net/job/Spigot/718/changes
this-
CraftBukkit-Patches/0005-Async-Operation-Catching.patch
was implemented to stop plugins from crashing server.
but in this-
http://ci.md-5.net/job/Spigot/754/changes
he removed it. and now works again
-
View User Profile
-
Send Message
Posted Apr 4, 2013Is it possible to add a potion effect to a player?
I couldn't find any Script Commands to do it, is this possible?
-
View User Profile
-
Send Message
Posted Apr 4, 2013@midnightfang22
Are you reffering to the above tp issue or to the below delobj issue with the async?
-
View User Profile
-
Send Message
Posted Apr 4, 2013@HunterzCZ
I can't reproduce it on my test server...made 2 walk triggers that warp to each other and teleported another player to me before I warp, but neither client is getting the message other than the normal warping message. Mind taking a screenshot?
-
View User Profile
-
Send Message
Posted Apr 4, 2013@midnightfang22
yes this message see in the client chat.
script command is @CMD warp spleefout
essentials at same version, only bukkit change from 1.4.7 to 1.5.1
-
View User Profile
-
Send Message
Posted Apr 4, 2013@H8llfire
Its from spigot (almost sure); the plugin (variabletriggers) on spigots builds 718+ is broken as far as async works, so the author will have to fix it when he/she gets free time to do so.
-
View User Profile
-
Send Message
Posted Apr 4, 2013@midnightfang22
Hmm hard to say, I have multiple scripts that use the /s (tp to me) or /spawn commands of essentials. Im using the latest non final version of essentials 2.10.1 and Spigot 735 build.
One script like that:
- '@IF si <cmdarg:1> = tresor'
- '@CMD rg define tr<cmdarg:2> <cmdarg:2>'
- '@CMD rg setpriority tr<cmdarg:2> 2'
- '@CMD rg setparent tr<cmdarg:2> spawn'
- '@PAUSE 3'
- '@CMD s <cmdarg:2>'
- '@CMD signedit 2 <cmdarg:2>'
- '@EXIT'
- '@ENDIF'
It does not ALWAYS happen, but sometimes it gives out the error stated below.
Also, is there a bug with /vt delobj? Whenever i use it the server goes crazy not responding, and the console seems to scroll through every existing entry with [INFO] username until the correct object has been found. Weird?
-
View User Profile
-
Send Message
Posted Apr 4, 2013@H8llfire
Can you show me the section of the script that causes it? I want to try and reproduce it...Essentials version as well?
-
View User Profile
-
Send Message
Posted Apr 4, 2013@HunterzCZ
thats an essentials issue, i guess, I am also getting it.
-
View User Profile
-
Send Message
Posted Apr 4, 2013@HunterzCZ
A bit more info, such as the section of the script used, full error, etc? Also, can the player see it inside their chat while in-game, or does it only get logged in the client log?
-
View User Profile
-
Send Message
Posted Apr 4, 2013Have problem with 1.5.1 when use wtarea for warping:
log from client: 2013-04-04 09:33:52 [INFO] [Minecraft-Client] [CHAT] §6Warping to§c spleef§6. 2013-04-04 09:33:52 [INFO] [Minecraft-Client] [CHAT] §cError:§4 Asynchronous player tracker clear!
on 1.4.7 was work perfectly
-
View User Profile
-
Send Message
Posted Apr 3, 2013@meiamone
http://puu.sh/2tub8 The version of the plugin is 1.2.2, correct? Using Craftbukkit build 2734 in the screenshot. It didn't give the message after removing vault either (it shouldn't, but it hooks into it for economy, so you never know).
-
View User Profile
-
Send Message
Posted Apr 3, 2013@midnightfang22
Craftbukkit 2733 (1.5.1), 1G memory, 20 slot, hosted on commercial server.
@deleted_10868209
What do you mean by config? It's hosted on a minecraft commercial host using Multicraft Panel. Are you meaning the plugin config?
-
View User Profile
-
Send Message
Posted Apr 3, 2013@joshuawilde
You can use '@IF i <cmdarg:1> = 1' and it will attempt to read the argument as an integer.
-
View User Profile
-
Send Message
Posted Apr 3, 2013Is there a way to use the vtcommands to resolve plugin command conflicts? The plugins mob manager and motion madness both use /mm <argument> to define their commands
-
View User Profile
-
Send Message
Posted Apr 3, 2013@kencraft
Yea, just get the plugin PotionCommands and use them in your triggers :)
-
View User Profile
-
Send Message
Posted Apr 3, 2013Is there a way to convert a string to integer? So i can use the <cmdarg> as an integer?
Also, can I play certain music discs and note block sounds with Variable Triggers?
-
View User Profile
-
Send Message
Posted Apr 3, 2013@joshuawilde
Click on the reference link about Placeholders on this page.
@kencraft
Internally, no. Externally, (using @CMDOP or @CMDCON) yes.