EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Development::Development (https://www.eqemulator.org/forums/forumdisplay.php?f=590)
-   -   Junior Developers (https://www.eqemulator.org/forums/showthread.php?t=13930)

Baron Sprite 05-22-2004 08:35 PM

Junior Developers
 
Interested in becomming an EQEMu dev?
Here's how to get started:
Post code snippets (not dbs, this isn't for world building) on this forum
Make sure to stick "Jr Dev Code" up at the top of your post and in the topic.
If it works out ok you will be flagged as a Junior Developer and gain access to a special board.
Make sure to put all your code snippets on the new forum as well as reading the sticky there.
Devs will merge your code for you and help you out (doesn't mean they will teach you to program).

Scorpious2k 05-23-2004 01:24 AM

Some of you have already posted useful and working fixes. You are the reason we started this. Yes, we noticed!

So, for those of you who have a headstart and a history of contributions out there, here's an alternative for you. Post a message, saying you are interested and include links to some of your code changes/additions.This will let us know you are interested and remind us of the coding you have already done.

I am eager to see this get going. I know we have some great talent out there. I've seen your work. I believe this is going to help the Emu move forward much more quickly and prevent anything from falling through the cracks as it may have in the past.

Looking forward to working with you. :-)

cofruben 05-23-2004 02:51 AM

not sure if this is enough,but im working for more features.
http://www.eqemulator.net/forums/viewtopic.php?t=14489
http://www.eqemulator.net/forums/viewtopic.php?t=14937
http://www.eqemulator.net/forums/viewtopic.php?t=14665
I have done some features to my server too,but I need to go atm,will post later.Cya :twisted:

Valex 05-24-2004 02:16 PM

Jr Dev Code
 
#include

int main() {
cout << "Hello world!";
while(1) { }
return 0;
}

RangerDown 05-24-2004 06:29 PM

Sorry Valex, no cigar :(

1) Won't compile, need name of include file expected after #include directive. <iostream.h> would be a good one since you're using cout.

2) Your program will go in an infinite loop doing absolutely nothing because of your while statement.

kugrug 05-25-2004 02:21 PM

meh
 
Sorry Delete please i will post in forum not this post

kugrug 05-25-2004 02:22 PM

valex you forgot std:: in front of the cout

but you could have added
using std::cout; after you did main()

Valex 05-26-2004 03:14 PM

=(( dang





may i ask somthing,

Are we suppose to put c++

and also for making features for ur server,do u use C++ or perl?

Is EMu made out of C++?

Sorry,
just want to know=)

Shadow-Wolf 05-26-2004 04:25 PM

Quote:

Originally Posted by kugrug
valex you forgot std:: in front of the cout

but you could have added
using std::cout; after you did main()

ummm yeah....first leason, If you can keep it simple DO IT there is no need fot std:: infront of cout Example:

#include <iostream.h>

int x;
int y;
int z;
(it is a good idea to declare all your variables before you work on functions because i have recieved alot of errors when declaring variables in ohter functions)

int main()
{
cout<<"Hello please enter 2 numbers to be multiplyed."<<endl;
cout<<"Enter the first number now."<<endl;
cin>>x;
cout<<"Now enter your seconed number."<<endl;
cin>>y;
z=x*y;
cout<<"Here is the answer."<<z<<endl;
system("pause");
return 0;
}

Hmm its been a while since i have done any type of programming as my computers been breaking down but i believe that is correct.

sandy 05-27-2004 11:37 AM

hi =)
I'm a worldbuilder but if i can help a little I would be glad
Here's last thing i have written :
http://www.eqemulator.net/forums/viewtopic.php?t=15117

themushygod 06-05-2004 09:57 PM

what languges are you intrested in

i can do a couple of languges but mainly vb.net and java

or is eqemu dont in c++ (next on list to learn)

Richardo 06-08-2004 02:16 AM

Dont forget that you have to invert x and y, to fit to lives standars.. no?

Plutonium239 06-09-2004 07:52 AM

I must try this.

Valex 06-11-2004 03:11 PM

Junior Coder
 
if (expression) {
statements;
} else {
statements;
}

for (expression; expression; expression) {
statements;
}

do {
statements;
} while (expression);

while (expression) {
statements;
}

switch (expression) {
case constant:
statements;
break;
default:
statements;
break;
}

aendaar 07-11-2004 06:54 AM

#include <iostream>
using namespace std;
int main()
{

int a = 243;
int b;
int c;

cout<<"what is the password?";
cin>>b;
{ if(b == a)
cout<<"how did you find out the password?!";
}
{ if(b != a)
cout<<"haha! you dont know the password...go die..";
}
cin>>c;
return 0;
}

my skillz are leet


All times are GMT -4. The time now is 01:30 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.