421
Modification Help / Re: making a rapid fire gun
« on: December 10, 2009, 04:52:36 PM »
Look at the minigun. It just loops the images.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
function deleteline(%File,%lineNum)
{
if(!isFile(%File))
{
echo("Could not find file, " @ %file @ ".");
}
else
{
%Fo = new fileobject();
%Fo.OpenForRead(%File);
%i = 0;
while(!%Fo.isEOF())
{
%LN = %i;
%i++;
%Line = %Fo.Readline();
if(%LN != %LineNum)
{
%LineChar[%LN] = %Line;
}
}
%Fo.close();
%Fo.OpenforWrite(%File);
%A = 0;
while(%A < %i)
{
%AN = %A;
if(%AN $= %LineNum)
{
%A++;
%Fo.WriteLine(%LineChar[%A]);
}
else
{
%Fo.WriteLine(%LineChar[%A]);
}
%A++;
}
%Fo.close();
%Fo.delete();
}
}
You bumped this dead topic. Siba quit BL and these forums. I don't think this mod active or will be ever released.Uh what, he didn't leave.
Although, I'm slowly gaining back my respect for Pandan. :|Follower
He obviously had eval or something and knew a good deal of console commands. He can wipe out your base/client and config/client files which would pretty much break the game. You could reinstall Blockland if this happened, but backup your addons.impossible, the server has no access of clients folders.
Also, don't join servers running eval. It's just that dangerous.