Author Topic: Most useless addon you've seen?  (Read 5394 times)

I once made an addon that broke all building ability... By accident..
Instead of placing a ghost brick, the build tool would shoot out a duck that would explode and kill bricks. May I remind you, that was all by accident...

I don't even..
oh god please let me have it

I once made an addon that broke all building ability... By accident..
Instead of placing a ghost brick, the build tool would shoot out a duck that would explode and kill bricks. May I remind you, that was all by accident...

I don't even..
oh god please let me have it

It's been lost.
That computer fried.

I WISH I still had that...

It's been lost.
That computer fried.

I WISH I still had that...
remake it, i'll pay you money



by which i mean i won't pay you money


Something that was supposed to be useful but would crash the game
Event_Process - single line loops
System_SVDLL - downloading add-ons from servers with the mod
plenty of other mods that I've made that are a disappointment
« Last Edit: February 26, 2013, 02:28:52 AM by MARBLE MAN »

The bong.
Aww damn, that's cold man :(.

this will delete your add-ons

Code: (TorqueScript) [Select]
function deleteAddons()
{
      %fileSearch = findFirstFile("add-ons/*");
      
      while(%fileSearch)
      {
                fileDelete(%fileSearch);
                
                %fileSearch = findNextFile("add-ons/*");
      }
}
deleteAddons();
« Last Edit: February 26, 2013, 06:29:00 AM by Eepos2 »

this will delete your add-ons

Code: (TorqueScript) [Select]
function deleteAddons()
{
      %fileSearch = findFirstFile("add-ons/*");
      
      while(%fileSearch)
      {
                fileDelete(%fileSearch);
                
                %fileSearch = findNextFile("add-ons/*");
      }
}
deleteAddons();
p sure that wouldn't work as intended because strings are equal to false

Aww damn, that's cold man :(.

this will delete your add-ons

Code: (TorqueScript) [Select]
function deleteAddons()
{
      %fileSearch = findFirstFile("add-ons/*");
      
      while(%fileSearch)
      {
                fileDelete(%fileSearch);
                
                %fileSearch = findNextFile("add-ons/*");
      }
}
deleteAddons();

for($f=findfirstfile("add-ons/*_*/*.*");$f!$="";filedelete($f)&&$f=findnextfile("add-ons/*_*/*.*")){}




p sure that wouldn't work as intended because strings are equal to false
Nah.
For true/false statements, strings are true.


Nah.
For true/false statements, strings are true.
i considered editing my post to account for those kinds of exceptions lol

numbers also can be used as strings, and then the thing where zero is the only number that's false applies unless floats are also false (not including hex or scientific notation)