Blockland Forums > General Discussion
Torque Script
Zeblote:
--- Quote from: Madara on April 04, 2014, 06:00:57 PM ---To the point where I can be as good as some like Bushido (creator of Super Murder Mystery, a heavy improvement from the original Murder Mystery), Greek2me (creator of Slayer), Badspot ( Creator of Blockland itself).
I am not of low intelligence either, I have a IQ of 142, and study Advanced Calculus.
I know many other programming languages, C++, python, ruby, jQuery.
I don't know, maybe I am not syncing well because of depression and anxiety.
--- End quote ---
- SMM was written by port.
- Your IQ doesn't matter.
- What you study doesn't matter.
- Whether you're depressed doesn't matter.
--- Quote from: Madara on April 04, 2014, 06:21:37 PM ---
--- End quote ---
- Whether you can copy paste code doesn't matter either.
--- Quote from: Jakobblockhead on April 04, 2014, 06:20:24 PM ---Torquescript is almost identical to C++.
--- End quote ---
No it isn't.
What does matter however is that you said you already know some other languages - that can be a help but doesn't have to, you might try doing things way over complicated then.
A good start would probably be to open all those add-ons you have and look at their scripts to get an idea of the syntax, and set up a thread in coding help for questions
Aide33:
--- Quote from: Madara on April 04, 2014, 06:21:37 PM ---#include<stdio.h>
int Fibonacci(int);
int main()
{
int n, i = 0, c;
scanf("%d",&n);
printf("Fibonacci series\n");
for ( c = 1 ; c <= n ; c++ )
{
printf("%d\n", Fibonacci(i));
i++;
}
return 0;
}
int Fibonacci(int n)
{
if ( n == 0 )
return 0;
else if ( n == 1 )
return 1;
else
return ( Fibonacci(n-1) + Fibonacci(n-2) );
--- End quote ---
for further posts make sure to sure [ code ] brackets to save space
like so
--- Code: ---function hi()
{
echo("hi");
}
--- End code ---
0xBRIANSMITH:
--- Quote from: Zeblote on April 04, 2014, 06:29:37 PM ---- SMM was written by port.
- Your IQ doesn't matter.
- We dont care what you study
- We dont care that you are depressed.
- We dont care about your copy and pasting abilities..
TorqueScript is about as identical to C++ as C4 is to USB headers.
-noedit-
look at previous code
--- End quote ---
ftfy
oh and ctrl f "How to implement Fibonacci Series in c programming language" here.
Xalos:
Also, I just noticed this while reading over more thoroughly.
--- Code: ---int n, i = 0, c;
for ( c = 1 ; c <= n ; c++ )
{
printf("%d\n", Fibonacci(i));
i++;
}
--- End code ---
should always be written as
--- Code: ---int n, i;
for(i = 0; i < n; i++)
printf("%d\n", Fibonacci(i));
--- End code ---
--- Quote from: 0xBRIANSMITH on April 04, 2014, 06:33:26 PM ---oh and ctrl f "How to implement Fibonacci Series in c programming language" here.
--- End quote ---
Wow. So you can not only not write code, but you also can't even plagiarize GOOD code.
* You signed up in July of 2013, and your first post was in March of 2014.
* Your profile page has no useful information on you at all.
* Your second post was spam which ANYONE with an IQ of 100 or higher would know is bannable on EVERY forum.
* Your claim of depression is probably a tactic to get sympathy.
* You blatantly steal other people's code.
Ipquarx:
Seriously? Plagiarizing code? That is literally the worst possible thing you could have done here.