Sunday, October 2, 2011

Tuned Sabre Turbo

Here is the code for the Tuned Sabre Turbo. It has custom colours, neon, nos and central locking. By holding o while driving you use the nos, when pushing down you lock or unlock the doors. A video is comming soon.


#cheat Tuned Sabre Turbo
//Author: WZW
//Category: Vehicle
//Description: A Sabre Turbo with indestructable tyres, custom colour, NOS, locked car doors (press down to lock/unlock) and neon.
//
//Version: 1.0.1
//Image:
//Working: Yes
if(getshort(pcar + 0x56) == 273)
{
setfloat(0x936F298, 0.8);
setchar(pcar + 0x224, 255, 0, 0);
setchar(pcar + 0x228, 0, 0, 0);
if(buttons & CTRL_CIRCLE && buttons & CTRL_CROSS) {

   speed = 0.0;
   setchar(0x09569B90, 0x10);
   setchar(0x09569B94, 0, 127, 255);
   if(getfloat(pcar+0x140)>0)
   {
      speed+=getfloat(pcar+0x140);
   }
   else
   {
      speed-=getfloat(pcar+0x140);
   }

   if(getfloat(pcar+0x144)>0)
   {
      speed+=getfloat(pcar+0x144);
   }
   else
   {
      speed-=getfloat(pcar+0x144);
   }

   if(speed<175/75)
   {
      setfloat(pcar+0x140,  getfloat(pcar+0x140)-getfloat(pcar+0x4)*0.005);
      setfloat(pcar+0x144,  getfloat(pcar+0x144)+getfloat(pcar)*0.005);
   }

}
else
{
   setchar(0x09569B90, 0x4);
   setchar(0x09569B94, 63, 63, 63);
}
}

R = 255;
G = 0;
B = 0;
for(neon=0;neon<16;neon++)
{setchar(0x0972EFF0+4*neon, R, G, B);}

setshort(pcar+0x3b6, 0, 0);

if(press & CTRL_DOWN)
setshort(pcar+0x232, getshort(pcar+0x232) ^ 0x0101);
#off
setshort(pcar+0x232, 0);

}



Comming soon: Updates, Fixed Vehicle Spawns

No comments:

Post a Comment