MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides

Homepage Register FAQ Members Mark Forums Read Advertise Marketplace FPSowned


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > WoW Emulator Server > Emulator Server Guides
Reload this Page [Guide] c++ your first program will be cool!
Emulator Server Guides Guides for working with World of Warcraft Emulator servers. Learn how to create a WoW Server here.
[NO QUESTIONS HERE]

Reply
 
LinkBack Thread Tools
[Guide] c++ your first program will be cool!
(#1)
Old
Ollox's Avatar
Ollox is Offline
Master Sergeant
Rep Power: 1
Reputation: 5
Ollox is an unknown quantity at this point
 
Posts: 81
Join Date: Oct 2007
Location: Sweden
[Guide] c++ your first program will be cool! - 07-10-2008

Hello guys! time to learn c++ eh...

in this tutorial:
- show you what many functions mean..
- make a little program..

Requiments:
- use Dev c++
- a brain?

open your c++ make a new Console Application
(or just make a Source File CTRL+N)
if you take the Console Application you will see some codes...
and u wont do that in Source File..
the code is:

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
system("PAUSE");
return EXIT_SUCCESS;
}

something like that... now im gonna teach you what this is...
iostream it has many functions like cout...
cout is a command that says something you want.. like cout << "hello everyone!";
using namespace std it will well, use the keyboard if you use a Pause function..
int main( ) that should ALLWAYS been in the project its the source in your program..
the { means the code should be here it starts here... example:

int main()
{
cout << "hello mmowned!?";
}

the main will say hello mmowned but you need #include <iostream> for the operator
cout is included there.
the other } its a block.. it will stop the code.
system(""); its a good command many things can used there.. like PAUSE it will pauses program and
say Press any key to continue...
if you use system("Pause >nul"); it will have a pause function but it wont show you the text. (could be usefull)
return EXIT_SUCCESS; means it will exit the program if its done everything right.


Other:
in the other tutorials i have checked in mmowned everyone is
using \n its make new line.. but why not use << endl;
it will end the line there and its much easier..
// means its a comment it wont make something in the program..
example //HELLO THIS IS CRAZY

lets make a program now:

first you will start with a Source File in dev c++ hold CTRL+N
now write:
#include <cstdlib>
#include <iostream>
#include <windows.h>

using namespace std;
int main(int argc, char *argv[])
{
char ourstring[50] = "As you know.. C++ ownz!";
int len = strlen(ourstring);
for (int i = 0; i < len; i++)
{
cout << ourstring[i];
Sleep(100);
}
//====================================
cout << "\n";
system("PAUSE");
}


and press F9 the program now will auto write a cool text
called "As you know.. C++ ownz!" you can change that in the code

thanks everybody for watching!!
make now some funny program

//olloX
Reply With Quote

Donate to remove ads.
(#2)
Old
Spinewhip's Avatar
Spinewhip is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 4
Spinewhip is an unknown quantity at this point
 
Posts: 58
Join Date: Mar 2007
Location: Compton
07-10-2008

Er How does this help me make a WoW server?
Reply With Quote
(#3)
Old
kruz2 is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 1
Reputation: 2
kruz2 is an unknown quantity at this point
 
Posts: 31
Join Date: Mar 2008
07-10-2008

that helps you with C++ and that will help you making scripts for your wow server!
Reply With Quote
(#4)
Old
samsta458's Avatar
samsta458 is Offline
Contributor
Rep Power: 2
Reputation: 88
samsta458 will become famous soon enough
 
Posts: 321
Join Date: Apr 2007
Location: CHESS WIPE LOLZ
07-10-2008

rofl at root. Yeah wrong section buddy, theres a specific programming forum + I don't see any REAL way this ties directly to emu servers other then being a programming language.


"COLLECTING FRIENDS AND COMMENTS xD Add m3h on my profile =)"
Reply With Quote
(#5)
Old
**Sweeny**'s Avatar
**Sweeny** is Offline
Knight-Lieutenant
Rep Power: 1
Reputation: 33
**Sweeny** is on a distinguished road
 
Posts: 284
Join Date: Dec 2007
07-10-2008

Quote:
that helps you with C++ and that will help you making scripts for your wow server!
Making a script with <iostream> helps your server how?


Reply With Quote
(#6)
Old
900number is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 1
Reputation: 1
900number is an unknown quantity at this point
 
Posts: 18
Join Date: Jul 2008
07-11-2008

great guide thanks
Reply With Quote
(#7)
Old
obionekanobi123 is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 1
Reputation: 1
obionekanobi123 is an unknown quantity at this point
 
Posts: 28
Join Date: Mar 2008
Location: Deadmines
07-11-2008

nice guide ty for that
Reply With Quote
(#8)
Old
Ollox's Avatar
Ollox is Offline
Master Sergeant
Rep Power: 1
Reputation: 5
Ollox is an unknown quantity at this point
 
Posts: 81
Join Date: Oct 2007
Location: Sweden
07-12-2008

thanks 900number and obionekanobi123
Reply With Quote
(#9)
Old
Ollox's Avatar
Ollox is Offline
Master Sergeant
Rep Power: 1
Reputation: 5
Ollox is an unknown quantity at this point
 
Posts: 81
Join Date: Oct 2007
Location: Sweden
07-12-2008

Quote:
Making a script with <iostream> helps your server how?
i just wanted to show you what this means..
Reply With Quote
(#10)
Old
micko is Offline
Sergeant
Rep Power: 2
Reputation: 14
micko is on a distinguished road
 
Posts: 52
Join Date: Sep 2006
07-12-2008

string roflfunction( int user, int forum)
{
for(int user = wtfmakesnosense, user >= smokingCrack, rep--)
{
lol = lol++;
}

return omg;
}

Reply With Quote
(#11)
Old
Ollox's Avatar
Ollox is Offline
Master Sergeant
Rep Power: 1
Reputation: 5
Ollox is an unknown quantity at this point
 
Posts: 81
Join Date: Oct 2007
Location: Sweden
07-12-2008

ey micko nice
Reply With Quote
(#12)
Old
**Sweeny**'s Avatar
**Sweeny** is Offline
Knight-Lieutenant
Rep Power: 1
Reputation: 33
**Sweeny** is on a distinguished road
 
Posts: 284
Join Date: Dec 2007
07-12-2008

Quote:
i just wanted to show you what this means..
You wanted to show us a 10 lined script when we can just go to cplusplus.com and have like 25 pages of showing us basics with <iostream> ?


Reply With Quote
Reply

Donate to remove ads.

Thread Tools

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
Trackbacks are Off
Pingbacks are Off
Refbacks are On




Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328