Blockland Forums > General Discussion
How do you set relays on players?
Chrono:
--- Quote from: TheArmyGuy on July 17, 2010, 07:35:29 PM ---Only if you want to decide when you shoot.
--- End quote ---
No.
Cannot use only relays because OnRelay does not have a player target.
Cannot use projectile loops because the projectile counts as the player target for some strange reason.
OnPlayerTouch would require you to always be touching a brick.
OnRespawn does not have a player target.
Print count under/overflow do not have player as a target.
So you either have to use JVS or variables.
general offtopic:
OnPlayerTouch>Player>SpawnProjectile>[x][y][z][projectile]
no need for VCE
Chrono:
--- Quote from: general offtopic on July 17, 2010, 07:42:16 PM ---OnPlayerTouch>Player>SpawnProjectile>[x][y][z][projectile]
no need for VCE
--- End quote ---
--- Quote from: Chrono on July 17, 2010, 07:41:55 PM ---OnPlayerTouch would require you to always be touching a brick.
--- End quote ---
TheArmyGuy:
--- Quote from: Chrono on July 17, 2010, 07:41:55 PM ---No.
Cannot use only relays because OnRelay does not have a player target.
Cannot use projectile loops because the projectile counts as the player target for some strange reason.
OnPlayerTouch would require you to always be touching a brick.
OnRespawn does not have a player target.
Print count under/overflow do not have player as a target.
So you either have to use JVS or variables.
--- End quote ---
Yes. What I meant was that you need to have JVS and variables to control when you shoot IF you do not want to use relays.
Chrono:
--- Quote from: TheArmyGuy on July 17, 2010, 07:43:13 PM ---Yes. What I meant was that you need to have JVS and variables to control when you shoot IF you do not want to use relays.
--- End quote ---
You need JVS or variables to shoot constantly which is what the OP is asking about.