WiiRd forum

Wii & Gamecube Hacking => Wii Game hacking help => Topic started by: F@LL3N on July 20, 2012, 12:56:30 AM

Title: [Request] Pseudo coding tut
Post by: F@LL3N on July 20, 2012, 12:56:30 AM
Hey I've learned a lot of code types and I haven't seen a tut on this. I kinda understand it then I kinda don't. I'm asking if I can get a link to a tut or if someone could make one.
Title: Re: [Request] Pseudo coding tut
Post by: CrimsoN@DC on July 23, 2012, 07:11:01 PM
... You do realize, you don't use this so called "Pseudo coding" to do what you think you do... right?  I don't even know what it is tbh, so... goodluck with this.
Title: Re: [Request] Pseudo coding tut
Post by: Bully@Wiiplaza on July 24, 2012, 09:55:08 AM
^^ didn´t you already find a dvar tut to learn pseudo coding?
Title: Re: [Request] Pseudo coding tut
Post by: F@LL3N on July 26, 2012, 06:19:28 PM
Does anybody have one?
Title: Re: [Request] Pseudo coding tut
Post by: hetoan2 on July 29, 2012, 04:14:33 PM
this is just like pseudo coding on any other thing. usually people just learn how to code and use pseudo code to explain to others in generalities rather than specifics.

learn to code, then you can pseudo code.
Title: Re: [Request] Pseudo coding tut
Post by: F@LL3N on July 30, 2012, 02:05:37 AM
Quote from: hetoan2 on July 29, 2012, 04:14:33 PM
this is just like pseudo coding on any other thing. usually people just learn how to code and use pseudo code to explain to others in generalities rather than specifics.

learn to code, then you can pseudo code.

I already know how to code. Just not this. Thanks though.
Title: Re: [Request] Pseudo coding tut
Post by: CrimsoN@DC on July 30, 2012, 02:10:06 AM
What Hetoan is trying to convey here, or so I would take it, is that psuedo coding is a way to "teach" others how to code, it isn't a coding system itself.  As I said before, it isn't used for what you think it is.  I know why you want to "learn this" so badly.  ::)
Title: Re: [Request] Pseudo coding tut
Post by: F@LL3N on August 02, 2012, 04:42:19 AM
Ok well can anybody explain how you set it up.
Title: Re: [Request] Pseudo coding tut
Post by: Panda On Smack on August 06, 2012, 08:39:58 AM
var Has_F@LL3N_Performed_GoogleSearch;
set Has_F@LL3N_Performed_GoogleSearch to false;

if F@LL3N_GoogleSearch is true then
    set this thread to closed
end if
Title: Re: [Request] Pseudo coding tut
Post by: hawkeye2777 on August 07, 2012, 02:11:31 AM
https://en.wikipedia.org/wiki/Pseudocode

It does not have any standard; like the above link states, it's meant to be read by humans. Say you want to make a program that will count down from 10 to 0. The pseudocode might look like this:


while number is greater than 0 {
    print number
    decrement number by 1
}
print "0!!!"


In actual code, it may look like this:

Java

for (int i = 10; i > 0; i--) {
    System.out.println(i);
}
System.out.println("0!!!");


Python

i = 10
while i > 0:
    print(i)
    i -= 1
print("0!!!")


That's really all there is to it... nothing too special.
Title: Re: [Request] Pseudo coding tut
Post by: Bully@Wiiplaza on August 07, 2012, 10:44:30 AM
True, but I don´t think he wanted something like this since it´s not really Wii hacking related.
Title: Re: [Request] Pseudo coding tut
Post by: CrimsoN@DC on August 08, 2012, 02:07:56 AM
Sorry if this reply is un-necessary, however what he "wants" is a psuedo coding tut that will teach him how to be the next Seth, if you know what I mean.  They were discussing how seth makes his super advantaged codes, and someone, pretending to know what they're talking about, said he did it through psuedo coding.  Or something like that, I couldn't handel the stupidity in the answers to his question so I didn't bother reading on.