Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Re: Need more help with aimbot =)

by Sleepaholic88 (Novice)
on Mar 11, 2003 at 02:40 UTC ( [id://241921]=note: print w/replies, xml ) Need Help??


in reply to Re: Need more help with aimbot =)
in thread Need more help with aimbot =)

Wait, actually, i needed more than that. I also needed
sub readcount { my $filename = shift; # If the file doesn't already exist, we will # simply return a count of 0 and let writecount() # create the file later on. open my $fh, "< $filename" or return 0; my $count = <$fh>; close $fh; return $count; } sub writecount { my $filename = shift; my $count = shift; # If the file doesn't exist, this will create it. open my $fh, "> $filename" or die "Can't open $filename for write: $ +!\n"; print $fh $count; close $fh; }
Thank you very much!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://241921]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (7)
As of 2024-04-24 11:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found