Go Back   EQEmulator Home > EQEmulator Forums > Development > Development::Development

Development::Development Forum for development topics and for those interested in EQEMu development. (Not a support forum)

Reply
 
Thread Tools Display Modes
  #1  
Old 05-22-2004, 08:35 PM
Baron Sprite's Avatar
Baron Sprite
Dragon
 
Join Date: Jan 2002
Posts: 708
Default 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).
__________________
Waking up in the morgue is pretty harsh, but it beats being dead.
Begun, this irc stat war has.
Reply With Quote
  #2  
Old 05-23-2004, 01:24 AM
Scorpious2k's Avatar
Scorpious2k
Demi-God
 
Join Date: Mar 2003
Location: USA
Posts: 1,067
Default

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.
__________________
Maybe I should try making one of these servers...
Reply With Quote
  #3  
Old 05-23-2004, 02:51 AM
cofruben
Old-EQEmu Developer
 
Join Date: Oct 2002
Location: Spain
Posts: 323
Default

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:
Reply With Quote
  #4  
Old 05-24-2004, 02:16 PM
Valex
Sarnak
 
Join Date: Mar 2004
Posts: 88
Default Jr Dev Code

#include

int main() {
cout << "Hello world!";
while(1) { }
return 0;
}
Reply With Quote
  #5  
Old 05-24-2004, 06:29 PM
RangerDown
Demi-God
 
Join Date: Mar 2004
Posts: 1,066
Default

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.
Reply With Quote
  #6  
Old 05-25-2004, 02:21 PM
kugrug
Fire Beetle
 
Join Date: May 2004
Posts: 9
Default meh

Sorry Delete please i will post in forum not this post
Reply With Quote
  #7  
Old 05-25-2004, 02:22 PM
kugrug
Fire Beetle
 
Join Date: May 2004
Posts: 9
Default

valex you forgot std:: in front of the cout

but you could have added
using std::cout; after you did main()
Reply With Quote
  #8  
Old 05-26-2004, 03:14 PM
Valex
Sarnak
 
Join Date: Mar 2004
Posts: 88
Default

=(( 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=)
Reply With Quote
  #9  
Old 05-26-2004, 04:25 PM
Shadow-Wolf
Dragon
 
Join Date: Oct 2003
Posts: 511
Default

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.
__________________
How about the power to kill a yak from 200 yards away...WITH MIND BULLETS! thats telekinesis kyle.
Reply With Quote
  #10  
Old 05-27-2004, 11:37 AM
sandy
Hill Giant
 
Join Date: Oct 2002
Posts: 212
Default

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
__________________
Sandy
Reply With Quote
  #11  
Old 06-05-2004, 09:57 PM
themushygod
Sarnak
 
Join Date: Feb 2004
Posts: 60
Default

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)
Reply With Quote
  #12  
Old 06-08-2004, 02:16 AM
Richardo
Banned
 
Join Date: Oct 2003
Location: Mattmecks Basement
Posts: 546
Default

Dont forget that you have to invert x and y, to fit to lives standars.. no?
Reply With Quote
  #13  
Old 06-09-2004, 07:52 AM
Plutonium239
Fire Beetle
 
Join Date: Apr 2004
Posts: 7
Default

I must try this.
Reply With Quote
  #14  
Old 06-11-2004, 03:11 PM
Valex
Sarnak
 
Join Date: Mar 2004
Posts: 88
Default 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;
}
Reply With Quote
  #15  
Old 07-11-2004, 06:54 AM
aendaar
Sarnak
 
Join Date: Dec 2003
Location: Hellhole, Texas
Posts: 77
Default

#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
__________________
If we all took an eye for an eye and a tooth for a tooth, we would have no eyes or teeth.
---confucius...not really...i think it was ghandi
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 02:22 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3