Neuz Crash Ride

10/20/2018 22:18 Olapelasd#1
Hello i have a problem , if i equip any ride , and i logout then i join and i move the ride the neuz crash here.

if( !pItemProp )
Error( "ItemProp is NULL in ProcessActMsg2()\n" );
pMover->SetMotion( pItemProp->dwUseMotion + MTA_FRUNNING1, ANILOOP_LOOP, MOP_FIXED ); // ÀÏ´ÜÀº ´Ù ´ë±â µ¿ÀÛÀ¸·Î ¾´´Ù

thanks
10/20/2018 23:09 ZeroTwo02#2
well... you check if "!pItemProp" that give a shit error, but you call just after "pItemProp->dwUseMotion"... I suppose the neuz crash because he can't found the SetMotion to do because you don't have pItemProp maybe do ->

if (pItemProp)
pMover->SetMotion( pItemProp->dwUseMotion + MTA_FRUNNING1, ANILOOP_LOOP, MOP_FIXED );
10/20/2018 23:38 Olapelasd#3
Quote:
Originally Posted by naruto66620 View Post
well... you check if "!pItemProp" that give a shit error, but you call just after "pItemProp->dwUseMotion"... I suppose the neuz crash because he can't found the SetMotion to do because you don't have pItemProp maybe do ->

if (pItemProp)
pMover->SetMotion( pItemProp->dwUseMotion + MTA_FRUNNING1, ANILOOP_LOOP, MOP_FIXED );
Well if i dont logout it works perfectly , the problem is when i logout , and i join and i try to walk on the ride , the error comes after adding mount ,

bump

Fixed it thanks
03/01/2019 17:01 accelerated#4
Quote:
Originally Posted by Olapelasd View Post
Well if i dont logout it works perfectly , the problem is when i logout , and i join and i try to walk on the ride , the error comes after adding mount ,

bump

Fixed it thanks
how did you fixed it? Am having the same problem right now.