| 
   | 
   | 
  
 
    | 
    | 
    | 
  
 
    | 
   | 
    | 
  
 
    | 
   | 
    | 
  
 
    | 
   | 
    | 
  
 
   | 
  
	
		
   
   
      | Archive::News Archive area for New's posts that were moved here after an inactivity period of 90 days. | 
    
    
   
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-09-2004, 07:17 AM
			
			
			
		  
	 | 
 
	
		
		
		
			
			| 
			
				
				
				 Discordant 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: May 2002 
					
					
					
						Posts: 434
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
				 
				Update to live and a request
			 
			 
			
		
		
		
		There should be a new release in testing soon, that will work with the latest EQLive patch.  We are also are in need of programmers.  We need people that have experience in c/c++.  Experience with networking and threading is certainly a plus, but not required.  If you are interested reply to this thread or PM image with examples of your work and a list of your skills. 
		
	
		
		
		
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-09-2004, 07:56 AM
			
			
			
		  
	 | 
 
	
		
		
		
			
			| 
			
				
				
				 Discordant 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: Mar 2004 
					Location: Florida 
					
					
						Posts: 363
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		I feel stupid for asking, but what can I do. I have borland C++ builder and I have never compiled a version. If you are desperate, you can take me in and try and teach me. Otherwhise, ignor me.  :| 
		
	
		
		
		
		
		
		
			
				__________________ 
				 
			 
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
	
		
	
	
	
		
		
		
			
			 
			
				05-09-2004, 09:40 AM
			
			
			
		  
	 | 
 
	
		
		
		
			  | 
			
			
				
				
				 Fire Beetle 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: Apr 2003 
					Location: Florida 
					
					
						Posts: 28
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		REM example program by drplump 
CLS 
INPUT "Who is the new dev" $newdev 
IF $newdev="drplump" THEN PRINT "you win" ELSE PRINT "you suck at life" 
END 
 
 
 
lets remake eqemu in basic 
		
	
		
		
		
		
		
		
			
				__________________ 
				Memeber of the I HATE Devn00b club.
			 
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-09-2004, 12:07 PM
			
			
			
		  
	 | 
 
	
		
		
		
			  | 
			
			
				
				
				 Sarnak 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: Nov 2003 
					
					
					
						Posts: 68
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		ugh, means more dbs.... 
		
	
		
		
		
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-09-2004, 07:41 PM
			
			
			
		  
	 | 
 
	
		
		
		
			
			| 
			
				
				
				 Fire Beetle 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: May 2004 
					
					
					
						Posts: 9
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		Hello, i'm on first year of Informatic Career. My knoweledge of C its normal, programming and this well, but not applications of internet. In C++ i just begin 2 months ago and i'm too newbie, but if you really need help tell me.  
Level Programming: Newbie
 
Quake_UHS
 quake_dh@hotmail.com
EXEMPLE of a program created 5 months ago, in C. (a bit part of the program). Is in spanoish the comments, because i'm I.
 
int *Crea_Check_Taulell(int files, int columna)			 
{ 
	int *taulerauxiliar; 
	int i;
 
	taulerauxiliar=(int*)malloc(files*columna*sizeof(i  nt*)); 
	if(taulerauxiliar==NULL) 
	{ 
		printf("Error: la memoria no es pot reservar\n"); 
		getche(); 
		return (NULL); 
	}
 
	for(i=0; i<(files*columna); i++) 
	{ 
		taulerauxiliar[i]=0; 
	}
 
	printf("\n%d\n", taulerauxiliar[0]); 
	return(taulerauxiliar); 
}  
		
	
		
		
		
		
		
		
			
				__________________ 
				The best magician ever passed through norrath...
 
Visit  http://vg2.por5.com
Grillete
			  
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-10-2004, 03:09 AM
			
			
			
		  
	 | 
 
	
		
		
		
			
			| 
			
				
				
				 Old-EQEmu Developer 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: Oct 2002 
					Location: Spain 
					
					
						Posts: 323
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		I have some knownledge of c++.I have added perl functions,ldon points system and some bugs fixes for my server. 
		
	
		
		
		
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-10-2004, 03:24 AM
			
			
			
		  
	 | 
 
	
		
		
		
			
			| 
			
				
				
				 Items Master 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: Apr 2003 
					
					
					
						Posts: 293
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		I r teh r0x0rs of j00r b0x0rs RAWR 
		
	
		
		
		
		
		
		
			
				__________________ 
				 
			 
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-10-2004, 09:09 AM
			
			
			
		  
	 | 
 
	
		
		
		
			
			| 
			
				
				
				 Discordant 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: Jan 2004 
					Location: 47 
					
					
						Posts: 339
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		#include <stdio.h> 
int main(void){ 
  printf("Hello wrold"); 
}
 *** edit : crt0.o has default return ***   
i hate C++. Been fiddling with that for ... 12 years. Behh, makes me sick :/, retired since 96. 
 
What a bout a nice thing with garbage collection and dynamic linking ?
 
network : network IS the computer 
threading : thought EQEMu was to compile on Windoze too ?   
Nah, can't apply. Hope i can help EMu with some quest script kidding, it'd be a good start. G'luck folks    
		
	
		
		
		
		
		
		
			
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-10-2004, 09:41 AM
			
			
			
		  
	 | 
 
	
		
		
		
			
			| 
			
				
				
				 Old-EQEmu Developer 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: Oct 2002 
					Location: Spain 
					
					
						Posts: 323
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		
	Quote: 
	
	
		| 
			
				 
					Originally Posted by smogo
					
				 
				#include <stdio.h> 
 
int main(void){ 
  printf("Hello wrold"); 
} 
			
		 | 
	 
	 
 hey you forgot the return     
		
	
		
		
		
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
		
	
	
 
    | 
   | 
    | 
  
 
	
		
		
		
			
			 
			
				05-10-2004, 12:02 PM
			
			
			
		  
	 | 
 
	
		
		
		
			
			| 
			
				
				
				 Discordant 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: Feb 2004 
					
					
					
						Posts: 400
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		Heh, looks like reading billions of books paid off! I am also  VERY interested. I will be releasing eqemu code fixed/addons soon also. I know intermediate c++ and php. I have full knowledge about running an eqemu server, dont know if that counts, well anyways heres a program I made for fun once for my friends. Very basic, but im guessing it could do the trick.
 
#include <iostream.h>
 
int main () 
{ 
  char mybuffer [100]; 
  cout << "Yo blu wat you need? [pot] [crack] [coke] "; 
  cin.getline (mybuffer,100); 
  cout << "So yo need sum " << mybuffer << "muthafucka?\n"; 
  cout << "How much? "; 
  cin.getline (mybuffer,100); 
  cout << " " << mybuffer << " on its way!.\n"; 
  return 0; 
}
 
I know almost all of the commands.  Just tell me where to apply them.  I would help out more but im bad at finding bugs because everything looks so perfect to me    
		
	
		
		
		
		
		
		
			
				__________________ 
				My Newbie Guides
Server Classifications
Zone Points
Change Maxlevel
Kaio Kuzumaki of the East, Owner of Tides of War [Custom-Legit] PvP Server 
Orome, Lord of the Woods, Middle-Earth Roleplay PvP Server 
Kaio Kuzumaki of the East, Owner of Kaio's All-GM Test Server
			 
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
 
    | 
   | 
    | 
  
 
	 
	
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-11-2004, 08:47 AM
			
			
			
		  
	 | 
 
	
		
		
		
			  | 
			
			
				
				
				 Dragon 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: Mar 2004 
					Location: France, Bordeaux. 
					
					
						Posts: 677
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		Im learning C++, actually modifying code for my server, i will help you guys ... in like 6 months  :P 
		
	
		
		
		
		
		
		
			
				__________________ 
				 
 
			 
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-11-2004, 06:10 PM
			
			
			
		  
	 | 
 
	
		
		
		
			
			| 
			
				
				
				 Fire Beetle 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: May 2004 
					
					
					
						Posts: 7
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		Hey.. I used to run my MUD way back in the day and coded that myself entirely in C/cpp so I know at least a little bit of what im doing and would like to help   
Now, the basic networking structure was pre-done but i can write whole new systems/features without too much of a problem :P  
		
	
		
		
		
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-12-2004, 02:16 AM
			
			
			
		  
	 | 
 
	
		
		
		
			  | 
			
			
				
				
				 Developer 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: Aug 2003 
					
					
					
						Posts: 246
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		If you are interested in helping out and being a "dev" on the project, the best way to do it is to prove to us that you can.: 
1) Get the code 
2) Compile it 
3) Find/fix bugs, improve performance, etc 
4) Submit patches 
		
	
		
		
		
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
	
	
		
	
	
	
		
		
		
			
			 
			
				05-12-2004, 03:09 AM
			
			
			
		  
	 | 
 
	
		
		
		
			
			| 
			
				
				
				 Old-EQEmu Developer 
				
				
				
			 | 
			  | 
			
				
				
					Join Date: Oct 2002 
					Location: Spain 
					
					
						Posts: 323
					 
					
					
					
					     
				 
				
			 | 
		 
		 
		
	 | 
 
	
	
	
		
		
		
			
			
			 
			
		
		
		
		1) Get the code  
2) Compile it  
3) Find/fix bugs, improve performance, etc  
4) Submit patches 
 
I can do these things....I guess the four by CVS right?if yes,then I know how. 
		
	
		
		
		
		
		
		
		
		
		
	
		
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 | 
 
 
	 
	
		 
	 
 
 
	
		
	
	
	
	
	| Thread Tools | 
	
 
	| 
	
	
	
	 | 
	
 
	| Display Modes | 
	
 
	
	
	
	
		  Linear Mode 
		
		
	 
	
	 | 
	
	
 
 
	
		
	
		 
		Posting Rules
	 | 
 
	
		
		You may not post new threads 
		You may not post replies 
		You may not post attachments 
		You may not edit your posts 
		 
		
		
		
		
		HTML code is Off 
		 
		
	  | 
 
 
	 | 
	
		
	 | 
 
 
All times are GMT -4. The time now is 01:39 AM. 
 
		 
	 
 
 
     | 
     | 
    
   
      | 
     | 
      | 
    
   
     | 
      | 
     | 
    
   
       | 
      | 
       | 
     
    
    
  | 
   |