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 ... 250 251 252 253 254 [255] 256 257 258 259 260 ... 570
3811
Help / Re: My controls keep reseting
« on: October 06, 2013, 11:32:56 PM »
What OS are you using? It sounds like it is unable to write to any files.

3812
Help / Re: Brick loading please wait....
« on: October 06, 2013, 10:10:30 PM »
Please post your console log.

3813
Help / Re: Only some people can join my server
« on: October 06, 2013, 10:09:45 PM »
How do you know that it's still having problems?

Post a console log please.

3814
Kudos to Dylan for making that entire post for OP.

Is there anything in particular that makes this superior to finding the dot product of the eye vector and the normalized position difference, and then doing checks on that (e.g. >= 0 for FOV 90)?
The difference in computational speed should be negligible.

3815
Off Topic / Re: Programming design stuff?
« on: October 06, 2013, 12:21:40 AM »
Maybe this is an awkward time to post this as I think I saw a topic talking about how somebody hates programmers or something earlier today...

Half the people here can program at least a little bit.



Do what Kingdaro said, put things on paper.

Here are some resources I found quickly:
http://www.reddit.com/r/SWArchitecture/
http://www.reddit.com/subreddits/search?q=programming
http://www.reddit.com/r/programming/
http://www.reddit.com/r/compsci/search?q=software+architecture&restrict_sr=on
(sorry for the reddit links, it's just good for finding lots of things.)

3816
Don't give up, I like your game modes!

3817
General Discussion / Re: All the servers now
« on: October 05, 2013, 11:43:41 PM »
Make your own if you don't like them. I'm tired of these topics.

3818
Modification Help / TorqueDoc | Ready for use!
« on: October 05, 2013, 11:29:18 PM »
TorqueDoc
The TorqueScript documentation generator.

Download Script_TorqueDoc.zip

You've probably heard of programs like JavaDoc before. Here is one for TorqueScript.

It creates a web page based off of comments made on functions.

For example, this is what your code might look like:
Code: [Select]
//Documents functions in TorqueScript files and exports them to an HTML page.
//@param string mask A mask specifying one or more files. You may use the * wildcard.
//@param string title The project title, which will be displayed at the top of the navigation bar.
function document(%mask, %title)
{
%doc = new scriptGroup()
{
class = TorqueDoc;
projectTitle = (strLen(%title) ? %title : "TorqueDoc");
};
%doc.readFO = new fileObject();
%doc.add(%doc.readFO);
%doc.writeFO = new fileObject();
%doc.add(%doc.writeFO);

%doc.parse(%mask);

%functions = (%doc.numFunctions $= "" ? 0 : %doc.numFunctions);
echo("Documented" SPC %functions SPC "functions successfully.");

%doc.delete();
}


List of Tags:
  • @author - List the author of this function. Multiple @author tags should be listed in order of significance.
  • @deprecated - Use the @deprecated tag to warn developers against using a function, because it may be removed in the future. This is useful when keeping old API functions for compatibility.
  • @link - Include a link to a webpage.
  • @param - Describe a parameter in the form "@param   varType varName   Description of the parameter."
  • @private - This function is not to be called by other scripts.
  • @return - Describes what the function returns in the form "@return   varType   Description of returned value."
  • @see - Creates a "See Also" link to another function.

3819
General Discussion / Re: Castle Defense Server
« on: October 05, 2013, 10:01:56 PM »
Are you always impatient in modification threads?
Turns out it might not be happening, MARBLE hasn't been online all day.

Zeblote is always like this. It's annoying.

3820
From what I remember of this server, it needed something faster to get around on, like boats and horses.

3821
General Discussion / Re: Why clear your bricks before leaving?
« on: October 05, 2013, 09:59:11 PM »
It's just a considerate thing to do sometimes.

3822
Modification Help / Re: Does anyone know where i can learn torque ?
« on: October 05, 2013, 09:57:12 PM »
http://docs.garagegames.com/tgea/official/content/documentation/Scripting%20Reference/Introduction/TorqueScript.html

read all of this

Actually, that's the TGEA tutorial, which is why some things are different. We use TGE. http://docs.garagegames.com/tge/

In any case though, newcomers would be best off taking trinick's advice.

3823
Help / Re: New set of door events added on load
« on: October 05, 2013, 09:52:35 PM »
Please tell the maker of the elevator bricks about the problem so that he can fix them.

3824
Help / Re: My controls keep reseting
« on: October 05, 2013, 09:51:44 PM »
Here is my console.log

That log file is blank. Try again?

stuff, I forgot that I deleted it and reinstall it again.

Did that fix it?

3825
Help / Re: is there some way to test if your server is joinable
« on: October 05, 2013, 09:51:07 PM »
Post your console log and I can tell you if UPnP is working.

Pages: 1 ... 250 251 252 253 254 [255] 256 257 258 259 260 ... 570