Author Topic: People not seeing datablocks?  (Read 755 times)

So I was fooling around with some code today, and made this: https://www.mediafire.com/?mfaw9ncu3baet79 (Credit to the Zapk for the rainbow image and stuff)
On my server, I can see the trails. However, I gave it to a friend and had him host a server. He enabled the addon and only I could see the trails. Why does this happen and how can I fix it?

optionally, you can just use this addon instead, which is confirmed to work for all players on server:
https://forum.blockland.us/index.php?topic=284794.0

im pretty sure one of us could debug your issue with the addon you linked, but if you were looking for a working trail mod, this one will save you time waiting for someone to fix your issue.

Try to make sure his "download textures" option is enabled in the network options

Look at your code:
Code: [Select]
textureName          = "Add-Ons/Server_Tests/rainbow";It is the wrong path, since your addon is called "Script_PlayerTrails"

The addon probably had an other name before, which you still have in your addons folder.
That is why you can see the trails, but not your friend.

Look at your code:
Code: [Select]
textureName          = "Add-Ons/Server_Tests/rainbow";It is the wrong path, since your addon is called "Script_PlayerTrails"

The addon probably had an other name before, which you still have in your addons folder.
That is why you can see the trails, but not your friend.
To fix this in the future you can just use "./" instead of "Add-ons/Server_Test" since "./" says, hey, just use the folder this script is being executed from.