Show Posts

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.


Messages - Greek2me

Pages: 1 ... 388 389 390 391 392 [393] 394 395 396 397 398 ... 570
5881
Need to be logged in to see the post.
Try now.

5882
Like this one? http://scatteredspace.com/forum/index.php?topic=1352.msg21667#msg21667
It has everything but the attitude indicator. Maybe you should PM him to release it.

5883
Help / Re: [GUIDE] Hosting a Dedicated Server on Linux
« on: June 18, 2012, 07:54:23 PM »
This is an excellent guide and deserves a sticky.

5884
I actually just looked at the full torque 3d torquescript reference, fileDelete is a default function.
Ok, it must just be fileCopy then. I know he added something.

5885
Modification Help / Re: Return lines in a function
« on: June 18, 2012, 12:36:44 PM »
If you have Windows 7, right click on the file and click "Restore Previous Versions".

5886
Modification Help / Re: Return lines in a function
« on: June 18, 2012, 09:49:54 AM »
Not from Blockland.

Can you use undo? Do you keep backups?

5888
Going to do the renamefile one now.

Ninja: Finished! :D

You did this one? http://rosettacode.org/wiki/Rename_a_file#TorqueScript
FileCopy and FileDelete are functions added by Badspot. You should probably remove that.

I'll leave this one for Zacko.

http://rosettacode.org/wiki/Time_a_function

I've got this:
Code: [Select]
/////////////////
/// Benchmark ///
/////////////////
function benchmark(%times,%function,%a,%b,%c,%d,%e,%f,%g,%h,%i,%j,%k,%l,%m,%n,%o)
{
if(!isFunction(%function))
{
warn("BENCHMARKING RESULT FOR" SPC %function @ ":" NL "Function does not exist.");
return -1;
}

%start = getRealTime();

for(%i=0; %i < %times; %i++)
{
call(%function,%a,%b,%c,%d,%e,%f,%g,%h,%i,%j,%k,%l,%m,%n,%o);
}

%end = getRealTime();

%result = (%end-%start) / %times;

warn("BENCHMARKING RESULT FOR" SPC %function @ ":" NL %result);

return %result;
}

///////////////
/// EXAMPLE ///
///////////////
function example(%var1,%var2)
{
//put stuff here
}

benchmark(500,"example","blah","variables");

Can you post that for me? I've used it for troubleshooting and it works great.

5889
The page is wrong for a few things like inheritance, which is possible.

5890
Please try connecting to http://auth.blockland.us/ and http://master2.blockland.us/
Post the results.

5891
Help / Re: Images in clan tags
« on: June 17, 2012, 06:03:58 PM »
It probably has to be set server-side.

5892
Modification Help / Re: Event Help
« on: June 17, 2012, 05:47:05 PM »
You need to change the first line.

This:
Code: [Select]
registerOutputEvent(Player,"checkMask");

Should have a 1 as the last argument so that it passes the client along to your function:
Code: [Select]
registerOutputEvent(Player,"checkMask","",1);

Source: http://forum.blockland.us/index.php?topic=40631.0

5893
General Discussion / Re: EERIE BEDROOM GLITCH NEED HELP
« on: June 17, 2012, 05:42:31 PM »
Try typing these commands in console:

resetLighting();
flushTextureCache();

5894
Suggestions & Requests / Re: Request: 2D player.
« on: June 17, 2012, 05:38:27 PM »
Rotate player 90 degrees, making walking sideways appear front-to-back.  Have no forward/backwards walking speed to that the new sideways cannot be adjusted.  Use the same animations.  Player will have to use A and D to walk normally, but that's not a problem, since you will be viewing them from the side.  The only problem is mounts.

That's what I did here:
Here is my attempt:
http://greekmods.webs.com/mods/Player_SideScroll.zip

Problems:
 - The player model is not facing the right way (prevents weapon use)
 - Player can rotate the camera with the mouse, causing the player to turn
 - Only the no-jet version works. The jet version is broken
 - Player can move diagonally

I just didn't rotate the player model.

5895
Help / Re: Failed to perform Bzip2 decompression
« on: June 17, 2012, 02:36:44 PM »
Try doing this again? It could work this time.

Try going to "My Documents\Blockland" and deleting the file called cache.db.

Pages: 1 ... 388 389 390 391 392 [393] 394 395 396 397 398 ... 570