(Solved)Totem like animation doesnt play after entity dies

Started by lilCthulhu on

Topic category: Help with MCreator software

Active 2 years ago
Joined Sep 2022
Points:
267

User statistics:

  • Modifications: 0
  • Forum topics: 1
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 1
(Solved)Totem like animation doesnt play after entity dies
Thu, 09/15/2022 - 08:35 (edited)

code

Tried so many way to make it work but the animation just doesnt play. Tried calling another procedure in case this is only server side but still doesnt work.

 

 

Edited by lilCthulhu on Thu, 09/15/2022 - 08:35
Active 2 years ago
Joined Sep 2022
Points:
267

User statistics:

  • Modifications: 0
  • Forum topics: 1
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 1
Solved just changed world…
Thu, 09/15/2022 - 08:34

Solved just changed world.isclientside() to true in code and it works 👍 

Active 5 months ago
Joined Sep 2021
Points:
472

User statistics:

  • Modifications: 0
  • Forum topics: 1
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 32
where did you find "world…
Wed, 09/21/2022 - 17:04

where did you find "world.isclientside() and how do i set it to true? 

Active 2 years ago
Joined Mar 2022
Points:
403

User statistics:

  • Modifications: 0
  • Forum topics: 3
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 57
@ActualWBonnie, it's called …
Thu, 09/22/2022 - 02:20

@ActualWBonnie, it's called "is provided world remote(cliet-side)"

Active 5 months ago
Joined Sep 2021
Points:
472

User statistics:

  • Modifications: 0
  • Forum topics: 1
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 32
So if i do "is provided…
Thu, 09/22/2022 - 03:52

So if i do "is provided world remote(cliet-side) = true" would that work?

 

Active 1 year ago
Joined May 2021
Points:
524

User statistics:

  • Modifications: 1
  • Forum topics: 1
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 4
@lilcthulu How do you do…
Thu, 02/09/2023 - 18:11

@lilcthulu How do you do that???

Active 1 week ago
Joined Feb 2020
Points:
804

User statistics:

  • Modifications: 0
  • Forum topics: 33
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 53
Somebody tried this to…
Mon, 01/15/2024 - 01:10

Somebody tried this to confirm ?

Active 1 year ago
Joined Dec 2023
Points:
80

User statistics:

  • Modifications: 0
  • Forum topics: 1
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 4
As it says, just change …
Thu, 02/08/2024 - 05:48

As it says, just change "world.is client side()" to "true", nothing more

Something like that:
BEFORE
if (world.is Client Side())

AFTER
if (true)