Game Modding | Call of Duty: Black Ops 3 | Scripting
ModmeBot:
Thread By: snprym
I hope somebody could help me with the following problem; I have a working gondola from motd, but when i activate the gondola, i get pushed to the back of the gondola and I can barely walk forward as the gondola moves faster than walking speed. I tried recording the issue but i get like 1 frame per 2 seconds with obs.
ModmeBot:
Reply By: natesmithzombies
platformSetMovingPlatformEnabled(true);
ModmeBot:
Reply By: snprym
natesmithzombies
platformSetMovingPlatformEnabled(true);
Thanks man! Do you know how to make it into this?
And could u also tell me where to put SetCursorHint( "HINT_NOICON" );
functioninit(){level.carttime=40;//adjust time it takes to get to other stationlevel.cartloop=true;carts=GetEntArray("carts","targetname");//triggersarray::thread_all(carts,&CartSetup);}functionCartSetup(){cart=GetEnt(self.target,"targetname");selfEnableLinkTo();selflinkto(cart);cartLinkPeices();selfthreadCartMove(cart);}functionCartMove(cart){cart.a=cart.origin;cart.b=struct::get(cart.target,"targetname").origin;while(1){selfwaittill("trigger");selfMoveToNext(cart);wait(.05);}}functionMoveToNext(cart){if(Distance(cart.origin,cart.a)<10){cartMoveTo(cart.b,level.carttime);}else{cartMoveTo(cart.a,level.carttime);}wait(level.carttime);wait(2);//waits so the cart doesn't go back right away}functionLinkPeices(){peices=GetEntArray(self.target,"targetname");foreach(pinpeices){pLinkTo(self);}}
ModmeBot:
Reply By: natesmithzombies
functioninit(){level.carttime=40;//adjust time it takes to get to other stationlevel.cartloop=true;carts=GetEntArray("carts","targetname");//triggersarray::thread_all(carts,&CartSetup);}functionCartSetup(){cselfSetCursorHint("HINT_NOICON");// NSZcart=GetEnt(self.target,"targetname");selfEnableLinkTo();selflinkto(cart);cartLinkPeices();selfthreadCartMove(cart);cartSetMovingPlatformEnabled(true);// NSZ}functionCartMove(cart){cart.a=cart.origin;cart.b=struct::get(cart.target,"targetname").origin;while(1){selfwaittill("trigger");selfMoveToNext(cart);wait(.05);}}functionMoveToNext(cart){if(Distance(cart.origin,cart.a)<10){cartMoveTo(cart.b,level.carttime);}else{cartMoveTo(cart.a,level.carttime);}wait(level.carttime);wait(2);//waits so the cart doesn't go back right away}functionLinkPeices(){peices=GetEntArray(self.target,"targetname");foreach(pinpeices){pLinkTo(self);}}
ModmeBot:
Reply By: snprym
natesmithzombies
functioninit(){level.carttime=40;//adjust time it takes to get to other stationlevel.cartloop=true;carts=GetEntArray("carts","targetname");//triggersarray::thread_all(carts,&CartSetup);}functionCartSetup(){cselfSetCursorHint("HINT_NOICON");// NSZcart=GetEnt(self.target,"targetname");selfEnableLinkTo();selflinkto(cart);cartLinkPeices();selfthreadCartMove(cart);cartSetMovingPlatformEnabled(true);// NSZ}functionCartMove(cart){cart.a=cart.origin;cart.b=struct::get(cart.target,"targetname").origin;while(1){selfwaittill("trigger");selfMoveToNext(cart);wait(.05);}}functionMoveToNext(cart){if(Distance(cart.origin,cart.a)<10){cartMoveTo(cart.b,level.carttime);}else{cartMoveTo(cart.a,level.carttime);}wait(level.carttime);wait(2);//waits so the cart doesn't go back right away}functionLinkPeices(){peices=GetEntArray(self.target,"targetname");foreach(pinpeices){pLinkTo(self);}}
It does not work, the black hand is removed but i still get pushed to the back of the gondola