SCAR Code:Procedure DropOre;
begin
if players[currentplayer].booleans[0]= True then
for i:=1 to 28 do
dropitem(i);
else
for i:=2 to 28 do
dropitem(i);
end;
end;
im missing a begin/end in there somewhere, but i cant figure out where
SCAR Code:Procedure DropOre;
begin
if players[currentplayer].booleans[0]= True then
for i:=1 to 28 do
dropitem(i);
else
for i:=2 to 28 do
dropitem(i);
end;
end;
im missing a begin/end in there somewhere, but i cant figure out where
<Wizzup> And he's a Christian
<Wizzup> So he MUST be trusted
___________________________________________
<Wizzup> she sounds like a dumb bitch
hmmm should i go around the begin maybe?
<Wizzup> And he's a Christian
<Wizzup> So he MUST be trusted
___________________________________________
<Wizzup> she sounds like a dumb bitch
Dont panic! Im an expert at scripting! MWHAAHAHAProcedure DropOre;
begin
if players[currentplayer].booleans[0]= True then
for i:=1 to 28 do
dropitem(i);
else
for i:=2 to 28 do
dropitem(i);
end;
end;
procedure DropOre;
begin
if players[currentplayer].booleans[0]= True then
begin
for i:=1 to 28 do
dropitem(i);
else
for i:=2 to 28 do
dropitem(i);
end;
end;
still says i need a identifier on the line w/ ELSE
<Wizzup> And he's a Christian
<Wizzup> So he MUST be trusted
___________________________________________
<Wizzup> she sounds like a dumb bitch
Removed a semi-colon you did not need, fixed standards, and removed an unnecessary end.SCAR Code:Procedure DropOre;
begin
if players[currentplayer].booleans[0] then
for i:=1 to 28 do
dropitem(i)
else
for i:=2 to 28 do
dropitem(i);
end;
Why don't you just ask me on MSN about this?As long as you don't be an ass to me, I will not block you again..
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
Thanks hy!
<Wizzup> And he's a Christian
<Wizzup> So he MUST be trusted
___________________________________________
<Wizzup> she sounds like a dumb bitch



There you go. You had an extra end; at the end.SCAR Code:Procedure DropOre;
begin
if players[currentplayer].booleans[0]= True then
for i:=1 to 28 do
dropitem(i);
else
for i:=2 to 28 do
dropitem(i);
end;
EDIT: Ahh, beaten![]()
Darn, =[ i WAS WAY OFF.... Im not so great after all =l
There are currently 1 users browsing this thread. (0 members and 1 guests)