Re: Fix Uber rollers 100%
Quote:
Originally Posted by
MikeDavies
I + H Code would be
Code:
ServerMessage RollerIH = new ServerMessage(584);
RollerActive.AppendInt32(Item.Id);
RollerActive.AppendBoolean(true);
SendMessage(RollerIH);
You fail, you would change true (I) to false (H) ...
Re: Fix Uber rollers 100%
Thank You, Thank You, Thank You :D
Re: Fix Uber rollers 100%
It gave me 8 errors ;s hope someone can help me (;
http://img831.imageshack.us/img831/5616/errors.png
Thnkz in advance,
DiNoMyTe:laugh:
Re: Fix Uber rollers 100%
You need to remove the Spaces, ex: ApprendBoole an
Re: Fix Uber rollers 100%
Quote:
Originally Posted by
GuikBretas
You need to remove the Spaces, ex: ApprendBoole an
Thank you :D
"Yay, it works!" xD
DiNoMyTe
Re: Fix Uber rollers 100%
or you can use this
Code:
if (Item.GetBaseItem().InteractionType.ToLower() == "roller")
{
User.RotBody = Item.Rot;
User.RotHead = Item.Rot;
User.MoveTo(Item.SquareInFront);
User.UpdateNeeded = true;
which does the exact same thing and doesn't crash the server
Re: Fix Uber rollers 100%
Quote:
Originally Posted by
omnija
or you can use this
Code:
if (Item.GetBaseItem().InteractionType.ToLower() == "roller")
{
User.RotBody = Item.Rot;
User.RotHead = Item.Rot;
User.MoveTo(Item.SquareInFront);
User.UpdateNeeded = true;
which does the exact same thing and doesn't crash the server
Yes you could but were trying to get the servermessages to actually make the Rollers "Move"
Re: Fix Uber rollers 100%
oh ok, well either way for a stable walking on them there's that if ppl really want to use it...
Re: Fix Uber rollers 100%
Questions: Why the items don't slides with the roller?
Why the user can't go to the ultimate roller?
Re: Fix Uber rollers 100%
Thank you so much
I've been looking for this everywhere