Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. player addAction [ "<t color='#FF0000'> METTRE LA VOITURE EN ROUGE </t>", { hint "La voiture est maintenant ROUGE"; [] call KRAM3R_PAINTCARJOBS_RED; } ];
  2. player addAction [ "<t color='#FF0000'> METTRE LA VOITURE EN VERT </t>", { hint "La voiture est maintenant VERTE"; [] call KRAM3R_PAINTCARJOBS_GREEN; } ];
  3. KRAM3R_PAINTCARJOBS_RED =
  4. {
  5. cursortarget setObjectTextureGlobal [0, "#(rgb,8,8,3)color(1,0,0,1)"];
  6. };
  7. KRAM3R_PAINTCARJOBS_GREEN =
  8. {
  9. cursortarget setObjectTextureGlobal [0, "#(rgb,8,8,3)color(1,0,0,1)"];
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement