Author Topic: Whats wrong?  (Read 6252 times)

0 Members and 2 Guests are viewing this topic.

MrMedic

  • MasstKer
  • ********
  • Posts: 8900
  • programmer/dev/software engineer
    • View Profile
Re: Whats wrong?
« Reply #60 on: July 02, 2012, 02:32:20 pm »
hint "Open the Map and Select the Map Position u want to paradrop Tents";
sCode = 'hint "Camping is great ... !";';
sCode = sCode + ' _pos = [(cTargetPos select 0) + random 100, (cTargetPos select 1) + random 100, 100];';
sCode = sCode + ' PLANE1 = createVehicle ["C130J", [(_pos) select 0,(_pos) select 1,500], [], 0, "FLY"];';
sCode = sCode + 'cpbLoops = 100;';
sCode = sCode + 'cpLoopsDelay = 0.13;';
sCode = sCode + 'for "_i" from 0 to cpbLoops do {';
sCode = sCode + ' _pos1 = [(cTargetPos select 0)+random 100,   (cTargetPos select 1)+random 100];';
sCode = sCode + ' _chute= createvehicle ["ParachuteC", [(_pos1) select 0,(_pos1) select 1], [], 0, "FLY"];';
sCode = sCode + ' _cow="TentStorage" createvehicle (getpos  _chute);';
sCode = sCode + ' _cow attachTo [ _chute, [0,0,0]];' ;
sCode = sCode + 'sleep cpLoopsDelay;};';
sCode = sCode + 'cTargetPos = nil;cpbLoops = nil;cpLoopsDelay = nil;';
onMapSingleClick "cTargetPos = _pos;[] spawn compile sCode; onMapSingleClick '';true;";

tent sale...  :smile
« Last Edit: July 02, 2012, 02:42:09 pm by MrMedic »
EnCoded Message: i3iy9yl8kr2xf3g2Txs3pr6ye3ya7jg5ty2z

https://www.youtube.com/watch?v=62_7-AYfdkQ
you need a paypal account for the private versions.

Website:
http://bit.ly/medic101

Teamspeak 3: 85.236.101.5:10157

robin-580

  • Online Villain
  • ***
  • Posts: 143
    • View Profile
Re: Whats wrong?
« Reply #61 on: July 02, 2012, 02:52:57 pm »
hahahaha thats funny

jimz

  • Cheater Apprentice
  • *
  • Posts: 16
    • View Profile
Re: Whats wrong?
« Reply #62 on: July 02, 2012, 04:45:01 pm »
Lol i like it medic!

robin-580

  • Online Villain
  • ***
  • Posts: 143
    • View Profile
Re: Whats wrong?
« Reply #63 on: July 02, 2012, 05:44:33 pm »
hint "Open the Map and Select the Map Position u want to paradrop";
sCode = 'hint "Cows in comming, RUN!";';
sCode = sCode + ' _pos = [(cTargetPos select 0) + random 100, (cTargetPos select 1) + random 100, 100];';
sCode = sCode + ' PLANE1 = createVehicle ["C130J", [(_pos) select 0,(_pos) select 1,500], [], 0, "FLY"];';
sCode = sCode + 'cpbLoops = 100;';
sCode = sCode + 'cpLoopsDelay = 0.13;';
sCode = sCode + 'for "_i" from 0 to cpbLoops do {';
sCode = sCode + ' _pos1 = [(cTargetPos select 0)+random 100,   (cTargetPos select 1)+random 100];';
sCode = sCode + ' _chute= createvehicle ["ParachuteC", [(_pos1) select 0,(_pos1) select 1], [], 0, "FLY"];';
sCode = sCode + ' _cow=group player createunit  ["Cow04", [(_pos1) select 0,(_pos1) select 1,152], [], 0, "FORM"];';
sCode = sCode + ' _cow attachTo [ _chute, [0,0,0]];' ;
sCode = sCode + 'sleep cpLoopsDelay;};';
sCode = sCode + 'cTargetPos = nil;cpbLoops = nil;cpLoopsDelay = nil;';
onMapSingleClick "cTargetPos = _pos;[] spawn compile sCode; onMapSingleClick '';true;";

this is more fun though

jimz

  • Cheater Apprentice
  • *
  • Posts: 16
    • View Profile
Re: Whats wrong?
« Reply #64 on: July 02, 2012, 08:26:55 pm »
That does look fun  :icon_biggrin2 hopefully dayz is working again when i finish work

inf1kek

  • Cheater Apprentice
  • *
  • Posts: 11
    • View Profile
Re: Whats wrong?
« Reply #65 on: July 02, 2012, 09:33:22 pm »
hint "Open the Map and Select the Map Position u want to paradrop";
sCode = 'hint "Cows in comming, RUN!";';
sCode = sCode + ' _pos = [(cTargetPos select 0) + random 100, (cTargetPos select 1) + random 100, 100];';
sCode = sCode + ' PLANE1 = createVehicle ["C130J", [(_pos) select 0,(_pos) select 1,500], [], 0, "FLY"];';
sCode = sCode + 'cpbLoops = 100;';
sCode = sCode + 'cpLoopsDelay = 0.13;';
sCode = sCode + 'for "_i" from 0 to cpbLoops do {';
sCode = sCode + ' _pos1 = [(cTargetPos select 0)+random 100,   (cTargetPos select 1)+random 100];';
sCode = sCode + ' _chute= createvehicle ["ParachuteC", [(_pos1) select 0,(_pos1) select 1], [], 0, "FLY"];';
sCode = sCode + ' _cow=group player createunit  ["Cow04", [(_pos1) select 0,(_pos1) select 1,152], [], 0, "FORM"];';
sCode = sCode + ' _cow attachTo [ _chute, [0,0,0]];' ;
sCode = sCode + 'sleep cpLoopsDelay;};';
sCode = sCode + 'cTargetPos = nil;cpbLoops = nil;cpLoopsDelay = nil;';
onMapSingleClick "cTargetPos = _pos;[] spawn compile sCode; onMapSingleClick '';true;";

this is more fun though

 :icon_laugh :icon_laugh :icon_laugh :icon_laugh

diddly123

  • Intentional Cheater
  • **
  • Posts: 28
    • View Profile
Re: Whats wrong?
« Reply #66 on: July 02, 2012, 11:59:11 pm »
Here's a hint for the script. There's a flip in the boolean that's missing.

MrMedic

  • MasstKer
  • ********
  • Posts: 8900
  • programmer/dev/software engineer
    • View Profile
Re: Whats wrong?
« Reply #67 on: July 03, 2012, 12:15:01 am »
the command he's looking for is 'not'
EnCoded Message: i3iy9yl8kr2xf3g2Txs3pr6ye3ya7jg5ty2z

https://www.youtube.com/watch?v=62_7-AYfdkQ
you need a paypal account for the private versions.

Website:
http://bit.ly/medic101

Teamspeak 3: 85.236.101.5:10157

Foma

  • Poptart
  • *
  • Posts: 4
    • View Profile
Re: Whats wrong?
« Reply #68 on: July 04, 2012, 12:16:40 am »
Just a few minutes ago I was playing some Arma 2 and some mod-apper came in and spawned a hundred of these paracows, then he made everyone fly on a rocket and then after all he got people in the flying tanks.
At first I thought that my script's gone crazy (as I spawned some parahookers like 10 mins ago) but then I realized that was someone else. :smile
It was quite a show  :icon_laugh
As I'm sure that was someone from out there, can I ask what way do you set player on a rocket/vehicle and make it actually fly for a long time?
Is the flying path taken from a bird?

Buster

  • Klass Klown
  • ***
  • Posts: 295
  • Kool Kat
    • View Profile
Re: Whats wrong?
« Reply #69 on: July 04, 2012, 12:23:37 am »