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 Dec 13, 2012Values reset? What's that?
-
View User Profile
-
Send Message
Posted Dec 12, 2012@ImaGe_
http://dev.bukkit.org/server-mods/variabletriggers/pages/docs/functional-place-holders/
You ill find info about:
<hasmoney:arg1:arg2>
<givemoney:arg1:arg2>
<takemoney:arg1:arg2>
-
View User Profile
-
Send Message
Posted Dec 12, 2012Maybe I'm missing it, but can you add an economy feature? I would like to be able to check someones balance when they click a sign, if it's over or below a certain amount, to do something. If I'm missing it, can someone walk me through how to do this with Essential's economy? Thank you for the help.
-
View User Profile
-
Send Message
Posted Dec 12, 2012Could you maybe add a pluginload trigger?
Like i would set some variables that get set when the server starts up and that will be used later.
I already need them when the first player logs in so using the login event won't solve it.
-
View User Profile
-
Send Message
Posted Dec 8, 2012Fantastic update!
-
View User Profile
-
Send Message
Posted Dec 8, 2012Nice update thanks :D The @while and chat trigger will be really useful :)
-
View User Profile
-
Send Message
Posted Dec 8, 2012@Dark513
It does occasionaly not work, it's depending on the plugin i have the feeling. Not quite sure though
-
View User Profile
-
Send Message
Posted Dec 8, 2012This is a great plugin. Thank you. First, I was looking for a plugin like this for something really small but when I've seen it I realized that I can do really much good things.
But I have a problem; the @CMDOP doesn't work in 1.4.5 but why don't you make the command to be executed from the console?
-
View User Profile
-
Send Message
Posted Dec 8, 2012@CBBBen
i did think about such things, but how would you then show where the comma is? :D
-
View User Profile
-
Send Message
Posted Dec 8, 2012@H8llfire
How about you just use k*10/d ? Simple solution by simple math ;)
-
View User Profile
-
Send Message
Posted Dec 8, 2012@sfan5
this feature does atm not exist, right?
-
View User Profile
-
Send Message
Posted Dec 7, 2012@H8llfire
The thing you mean is Float.
Integer: 1234
Float: 1234.5678
-
View User Profile
-
Send Message
Posted Dec 7, 2012@lexlaiden
Thanks for the update man! Great as always.
But would you be able to add the possibility to add , to integers? I am creating a variable for the kill and death count, but dividing them only gets me a full number, making k/d absolutely unusable.
-
View User Profile
-
Send Message
Posted Dec 6, 2012New update v1.2.2 has been uploaded. It has some very nice additions.
-
View User Profile
-
Send Message
Posted Dec 5, 2012Lots of people underestimate the power of this plugin, but i totally disagree with them, this plugin is so powerful that this Should be a default tool of minecraft. really powerful and allows you to customize your server a lot, even without knowing java, and if you know, you just save time and work when you want little custom things, of course for big ones you shall create your own plugins, but for little ones just use variable triggers and save time, work and server performance. Continue the great work, don't stop updating this please ;)
-
View User Profile
-
Send Message
Posted Dec 5, 2012Anyone familier with Tekkit please read this post http://dev.bukkit.org/server-mods/variabletriggers/forum/scriptrequests/46038-join-event-on-tekkit/ and help this guy out. Thanks
-
View User Profile
-
Send Message
Posted Dec 4, 2012I am getting ready to release the next update so be sure you have Subscribed so you will get notified when its released. We have some nice features
What's been added so far in the upcoming release
Fixes
Added - /vt savetriggers, /vt reloadtriggers and /vt reloadscripts now display a message in the chat window to the user when you use one of these commands.
Script Commands
[i|b|s|si] [VALUE] [=|!=|>|<|>=|<=][VALUE]Event Triggers
Place Holders Specific to Chat Event
Functional Place Holders Specific to Chat Event
Be sure you are Subscribed
-
View User Profile
-
Send Message
Posted Dec 1, 2012@H8llfire
An easier way to do that would be to simply make an area, then set the ENTER script to run the command.
Edit: Seriously, can someone tell me why my replies never show the names?
-
View User Profile
-
Send Message
Posted Nov 30, 2012@TipKlaassen1
Create an vt area that asks for a object variable, for example b $<playername>.command. Then add this simple script to the area:
@IF b $<playername>.command = true @ELSE @CMDCON some command to tp the player out (essentials tppos) @ENDIF
Then create a command trigger, which would be the command which has to be executed, script:
@SETBOOL $<playername>.command true If you want to reset it after some time add @PAUSE thetimeyouwanttopause @SETBOOL $<playername>.command false
that should be it, prolly not the best way ;)
Edit: If you just want the region to trigger that automatically runs the command, just create the area and add this code @CMD if the player is executing it @CMDCON if the console is executing it or @CMDOP if the player needs additional rights. If this is the case, you have not read the help documents so. The above script just checks if the player executed the command, unforced.
-
View User Profile
-
Send Message
Posted Nov 30, 2012Can I also make it so that when a player walks in a certain region he's forced to run a command? If so, how?