How to get block at coordinates?
#1
Question 
Basically I want to check the block below the player.
If it is stairs or piston, return true;
else return false.
I checked in the API but didn't found anything that could do this.
Thank you.

Post Scriptum: sorry for bad English, i am not mother language.
Reply
Thanks given by:
#2
You can do it with this code:
local blocktype = world:GetBlock(player:GetPosition():addedY(-1));
Reply
Thanks given by:
#3
(04-12-2021, 09:07 PM)NiLSPACE Wrote: You can do it with this code:
local blocktype = world:GetBlock(player:GetPosition():addedY(-1));

I get error attempt to index local 'PlayerWorld' (a nil value)
with this code:

33 function testBlock(aPlayerOldPositionNewPosition)
34     local PlayerWorld = OldPosition.world -- I get error here
35     local block = PlayerWorld:GetBlock(aPlayer:GetPosition():addedY(-1))[/font]

36 end

And thank you for your support! Big Grin
Reply
Thanks given by:
#4
(04-12-2021, 11:30 PM)_XxFedexX_ Wrote:
(04-12-2021, 09:07 PM)NiLSPACE Wrote: You can do it with this code:
local blocktype = world:GetBlock(player:GetPosition():addedY(-1));

I get error attempt to index local 'PlayerWorld' (a nil value)
with this code:

33 function testBlock(aPlayerOldPositionNewPosition)
34     local PlayerWorld = OldPosition.world -- I get error here
35     local block = PlayerWorld:GetBlock(aPlayer:GetPosition():addedY(-1))[/font]

[color=#d4d4d436 end[/font][/size][/color]

And thank you for your support! Big Grin

The Position object doesn't know it's world. it's only three values.
You need to ask the player object for it's world

34     local PlayerWorld = Player:GetWorld()
Reply
Thanks given by:




Users browsing this thread: 1 Guest(s)