PDA

View Full Version : first steel smither script



daddyproboot
07-29-2007, 11:44 AM
this is my first script so dont be harsh lol

sthu n pot k
08-01-2007, 02:13 PM
Would Test it but mains banned so none of my account even have the smithing levels sorry =\

Diabloizzle
08-01-2007, 07:16 PM
old{You didn't set your bitmaps up right. It shouldn't be bitmapfromstring2.( no 2)
and you said false instead of saying the width and height of the bitmap. I don't know how that happened...}old

EDIT: I've seen other scripts with "BitmapFromString2(False,....." what does that mean?

Daddyproboot, do you know the difference?

dvdcrayola
08-02-2007, 05:11 AM
also... work on spacing things corectly

not

procedure doit;
begin
stuff;
stuff;
if this then
begin
stuff;
end;
stuff;
end;


this

procedure doit;
begin
stuff;
stuff;
if this then
begin
stuff;
end;
stuff;
end;


and not

procedure doit1
begin
this;
end;
procedure doit2
begin
this;
end;


this

procedure doit1
begin
this;
end;

procedure doit2
begin
this;
end;


it just makes things eisier for you and others to understand