Network: WoW Gold | WoW Accounts | MPS Games | FPSowned
MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides
Homepage »      Register »      Hall of Fame »      Ranks And Awards »      Advertise »      Marketplace »
 
Sign up



Do you like this excellent information? Then Donate HERE to remove ads and support the MMOwned community.


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > WoW Emulator Server > Emulator Server Releases

Emulator Server Releases This section is for all releases regarding Emu servers.
[NO QUESTIONS HERE]

Reply
 
LinkBack Thread Tools
  #1  
Old 10-10-2009
Pwntzyou's Avatar
Pwntzyou is offline.
Contributor
  
 
Join Date: Dec 2007
Location: Ironforge
Posts: 387
Nominated 12 Times in 4 Posts
Reputation: 258
Points: 5,341, Level: 7
Points: 5,341, Level: 7 Points: 5,341, Level: 7 Points: 5,341, Level: 7
Level up: 94%, 59 Points needed
Level up: 94% Level up: 94% Level up: 94%
Activity: 0.3%
Activity: 0.3% Activity: 0.3% Activity: 0.3%

The most useful GM command ever!

Here is a GM command I wrote up some time ago named "warp"

Syntax: .warp direction value


direction = f, b, u, d, rotate
(forward, backward, up, down, rotate)


value: 1-360


This nifty little command will teleport your character (direction) (value).
Basically instead of manually inputting coordinates to get through objects, you can just type my command and you will port yourself though them.

This is EXTREMELY helpful for spawning things (especially game objects!)

Not sure why this has not been made an actual command already!

Installation is pretty self explanatory if you look at the code below. You just need to add three different parts to three different files and then compile your server like normal.
Code:
//Made by: Pwntzyou!
//DONT JACK THIS SHIT AND TAKE CREDIT FOR IT OR I WILL FIND AND KILL YOU

//ADD TO level3.cpp
//(In all honesty it really does not matter which levelX.cpp you put it unless you want to restrict that level of command

bool ChatHandler::HandleWarpCommand(const char* args, WorldSession *m_session)
{
    char dir;
    float value;

    if(sscanf(args, "%f %c", &value, &dir) < 1) return false;
    
    if(value > 360)
        return false;

    switch(tolower(dir))
    {
    //Made by: Pwntzyou!
    case 'u':
        {
            m_session->GetPlayer()->SafeTeleport(m_session->GetPlayer()->GetMapId(), m_session->GetPlayer()->GetInstanceID(), m_session->GetPlayer()->GetPositionX(), m_session->GetPlayer()->GetPositionY(), m_session->GetPlayer()->GetPositionZ() + (float)value, m_session->GetPlayer()->GetOrientation());
        }
        break;

    case 'd':
        {
            m_session->GetPlayer()->SafeTeleport(m_session->GetPlayer()->GetMapId(), m_session->GetPlayer()->GetInstanceID(), m_session->GetPlayer()->GetPositionX(), m_session->GetPlayer()->GetPositionY(), m_session->GetPlayer()->GetPositionZ() - (float)value, m_session->GetPlayer()->GetOrientation());
        }
        break;
    
    case 'f':
       {
            float x = m_session->GetPlayer()->GetPositionX() + cosf(m_session->GetPlayer()->GetOrientation())*value;
            float y = m_session->GetPlayer()->GetPositionY() + sinf(m_session->GetPlayer()->GetOrientation())*value;
            m_session->GetPlayer()->SafeTeleport(m_session->GetPlayer()->GetMapId(), m_session->GetPlayer()->GetInstanceID(), x, y, m_session->GetPlayer()->GetPositionZ(), m_session->GetPlayer()->GetOrientation());
        }
        break;

    case 'b':
        {
           //Made by: Pwntzyou!
            float x = m_session->GetPlayer()->GetPositionX() - cosf(m_session->GetPlayer()->GetOrientation())*value;
            float y = m_session->GetPlayer()->GetPositionY() - sinf(m_session->GetPlayer()->GetOrientation())*value;
            m_session->GetPlayer()->SafeTeleport(m_session->GetPlayer()->GetMapId(), m_session->GetPlayer()->GetInstanceID(), x, y, m_session->GetPlayer()->GetPositionZ(), m_session->GetPlayer()->GetOrientation());
        }
        break;

    case "rotate":
    {
           //In degrees -> Radians
       float radian = value * 180 / 3.14159265;
       m_session->GetPlayer()->SafeTeleport(m_session->GetPlayer()->GetMapId(), m_session->GetPlayer()->GetInstanceID(), m_session->GetPlayer()->GetPositionX(), m_session->GetPlayer()->GetPositionY(), m_session->GetPlayer()->GetPositionZ(), m_session->GetPlayer()->GetOrientation() + radian);
    }
    break;



    default:
        RedSystemMessage(m_session, "Invalid Direction, Please use forward(f) backward(b) up(u) down(d)");
    }
    return true;
}






// Chat.cpp
//ADD TO BOTTOM OF "static ChatCommand commandTable[] ="
// {
//    ...
//    ...
//    ...
//    HERE
//    ...
// }


{ "warp", 'm', &ChatHandler::HandleWarpCommand, "Warp the player (1-100) coordinates forward(f) backward(b) up(u) down(d).",







// Chat.h
// Add the following in Chat.h where similar things are        
// Should looks something like this
// Level 0 Commands
// ...
// ...
// ...
// HERE

bool HandleWarpCommand(const char * args, WorldSession * m_session);                                                       NULL,                     0, 0, 0 },
This *should* work with *most* emulators (Arcemu / Aspire / w.e) but if it does not, getting it to work will not be hard.
__________________

<3 MysterioussouL for the sig

Last edited by Pwntzyou; 10-15-2009 at 05:58 PM.
Reply With Quote


Donate to remove ads, get your "DONATOR title, and get access to the MMOwned community's elite Shoutbawx.

  #2  
Old 10-10-2009
stoneharry's Avatar
stoneharry is offline.
The Melancholy
Legendary User
  
 
Join Date: Sep 2007
Location: England
Posts: 1,717
Nominated 69 Times in 5 Posts
Nominated TOTM/W Award(s): 1
Reputation: 680
Points: 10,441, Level: 12
Points: 10,441, Level: 12 Points: 10,441, Level: 12 Points: 10,441, Level: 12
Level up: 54%, 559 Points needed
Level up: 54% Level up: 54% Level up: 54%
Activity: 40.1%
Activity: 40.1% Activity: 40.1% Activity: 40.1%

Tbh this is just for lazy people, it takes about 10 seconds to type .gps, then .worldport with a couple added on to X or whatever. Still, a nice script so
Reply With Quote
  #3  
Old 10-10-2009
Pwntzyou's Avatar
Pwntzyou is offline.
Contributor
  
 
Join Date: Dec 2007
Location: Ironforge
Posts: 387
Nominated 12 Times in 4 Posts
Reputation: 258
Points: 5,341, Level: 7
Points: 5,341, Level: 7 Points: 5,341, Level: 7 Points: 5,341, Level: 7
Level up: 94%, 59 Points needed
Level up: 94% Level up: 94% Level up: 94%
Activity: 0.3%
Activity: 0.3% Activity: 0.3% Activity: 0.3%

Quote:
Originally Posted by stoneharry View Post
Tbh this is just for lazy people, it takes about 10 seconds to type .gps, then .worldport with a couple added on to X or whatever. Still, a nice script so
I know, but when you need to do something like spawning 100 walls partially underground, something like this is a lifesaver

...trust me >.<!

And thanks!
__________________

<3 MysterioussouL for the sig
Reply With Quote
  #4  
Old 10-10-2009
Vision1000's Avatar
Vision1000 is offline.
Contributor
  
 
Join Date: Jun 2008
Location: can of duh
Posts: 117
Nominated 17 Times in 5 Posts
Reputation: 104
Points: 1,315, Level: 2
Points: 1,315, Level: 2 Points: 1,315, Level: 2 Points: 1,315, Level: 2
Level up: 83%, 85 Points needed
Level up: 83% Level up: 83% Level up: 83%
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%

Great script, just tried it out and it works perfectly!

This is going to save me a lot of time, Thank you so much!

x2

edit: Love the fact that it teleports you forward or backwards relative to your players orientation.

Last edited by Vision1000; 10-10-2009 at 06:42 PM.
Reply With Quote
  #5  
Old 10-10-2009
alj03's Avatar
alj03 is offline.
Knight-Champion
  
 
Join Date: Feb 2008
Posts: 489
Reputation: 43
Points: 1,989, Level: 3
Points: 1,989, Level: 3 Points: 1,989, Level: 3 Points: 1,989, Level: 3
Level up: 85%, 111 Points needed
Level up: 85% Level up: 85% Level up: 85%
Activity: 10.0%
Activity: 10.0% Activity: 10.0% Activity: 10.0%

Looks good mate. .
__________________
Reply With Quote
  #6  
Old 10-11-2009
Apple Pi's Avatar
Apple Pi is offline.
Master Sergeant
  
 
Join Date: Feb 2009
Location: Texas
Posts: 95
Nominated 11 Times in 3 Posts
Reputation: 41
Points: 1,936, Level: 3
Points: 1,936, Level: 3 Points: 1,936, Level: 3 Points: 1,936, Level: 3
Level up: 77%, 164 Points needed
Level up: 77% Level up: 77% Level up: 77%
Activity: 0.4%
Activity: 0.4% Activity: 0.4% Activity: 0.4%

Could you also do orientation too? I wold make it 500* more epic
__________________
What once was Moonblade rose from the ashes as Apple Pi!
Reply With Quote
  #7  
Old 10-11-2009
Pwntzyou's Avatar
Pwntzyou is offline.
Contributor
  
 
Join Date: Dec 2007
Location: Ironforge
Posts: 387
Nominated 12 Times in 4 Posts
Reputation: 258
Points: 5,341, Level: 7
Points: 5,341, Level: 7 Points: 5,341, Level: 7 Points: 5,341, Level: 7
Level up: 94%, 59 Points needed
Level up: 94% Level up: 94% Level up: 94%
Activity: 0.3%
Activity: 0.3% Activity: 0.3% Activity: 0.3%

Quote:
Originally Posted by moonblade0421 View Post
Could you also do orientation too? I wold make it 500* more epic
This uses orientation...

Hence *forward / backward*

so it ports you in the direction you are facing
__________________

<3 MysterioussouL for the sig
Reply With Quote
  #8  
Old 10-11-2009
Link_S's Avatar
Link_S is offline.
Contributor
  
 
Join Date: Dec 2008
Location: Sweden
Posts: 191
Reputation: 109
Points: 1,822, Level: 3
Points: 1,822, Level: 3 Points: 1,822, Level: 3 Points: 1,822, Level: 3
Level up: 61%, 278 Points needed
Level up: 61% Level up: 61% Level up: 61%
Activity: 2.7%
Activity: 2.7% Activity: 2.7% Activity: 2.7%

Haha, the human always tries to make everything easier cause we're so lazy xD.
This is very "lazy-creative" I can't get my hands of the button ^^
__________________
Why do I need a signature?
Reply With Quote
  #9  
Old 10-11-2009
jerrkan's Avatar
jerrkan is offline.
Contributor
  
 
Join Date: Sep 2007
Location: wowvirtue.com
Posts: 147
Reputation: 84
Points: 1,739, Level: 3
Points: 1,739, Level: 3 Points: 1,739, Level: 3 Points: 1,739, Level: 3
Level up: 49%, 361 Points needed
Level up: 49% Level up: 49% Level up: 49%
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%

nice 1 repx3 for you
__________________

Reply With Quote
  #10  
Old 10-11-2009
Ground Zero's Avatar
Ground Zero is offline.
Moderator
Legendary User
  
 
Join Date: Aug 2008
Location: United Kingdom.
Posts: 2,141
Nominated 36 Times in 10 Posts
Reputation: 771
Points: 19,448, Level: 19
Points: 19,448, Level: 19 Points: 19,448, Level: 19 Points: 19,448, Level: 19
Level up: 10%, 1,352 Points needed
Level up: 10% Level up: 10% Level up: 10%
Activity: 43.5%
Activity: 43.5% Activity: 43.5% Activity: 43.5%

Sexy Release is Sexy.
__________________
[Only registered and activated users can see links. ]
Reply With Quote
  #11  
Old 10-11-2009
jordddm's Avatar
jordddm is offline.
Sergeant
  
 
Join Date: Nov 2007
Location: near you
Posts: 44
Reputation: 11
Points: 665, Level: 1
Points: 665, Level: 1 Points: 665, Level: 1 Points: 665, Level: 1
Level up: 53%, 235 Points needed
Level up: 53% Level up: 53% Level up: 53%
Activity: 0.9%
Activity: 0.9% Activity: 0.9% Activity: 0.9%

didnt work for me

Code:
>------ Build started: Project: arcemu-world, Configuration: Release Win32 ------
1>Compiling...
1>StdAfx.cpp
1>Compiling...
1>faction.cpp
1>RecallCommands.cpp
1>QuestCommands.cpp
1>Level3.cpp
1>Level2.cpp
1>..\..\src\arcemu-world\Level3.cpp(4026) : error C2601: 'ChatHandler::HandleWarpCommand' : local function definitions are illegal
1> ..\..\src\arcemu-world\Level3.cpp(3940): this line contains a '{' which has not yet been matched
1>..\..\src\arcemu-world\Level3.cpp(4073) : fatal error C1075: end of file found before the left brace '{' at '..\..\src\arcemu-world\Level3.cpp(3940)' was matched
1>Level1.cpp
1>Level0.cpp
1>InstanceCommands.cpp
1>GMTicketCommands.cpp
1>debugcmds.cpp
1>BattlegroundCommands.cpp
1>WorldRunnable.cpp
1>DayWatcherThread.cpp
1>CommonScheduleThread.cpp
1>SpellTarget.cpp
1>SpellFixes.cpp
1>SpellEffects.cpp
1>Spell.cpp
1>WorldSession.cpp
1>AreaTrigger.cpp
1>VoiceChatHandler.cpp
1>TradeHandler.cpp
1>TaxiHandler.cpp
1>SpellHandler.cpp
1>SocialHandler.cpp
1>SkillHandler.cpp
1>ReputationHandler.cpp
1>RaidHandler.cpp
1>QuestHandler.cpp
1>QueryHandler.cpp
1>PetHandler.cpp
1>NPCHandler.cpp
1>MovementHandler.cpp
1>MiscHandler.cpp
1>LfgHandler.cpp
1>ItemHandler.cpp
1>HonorHandler.cpp
1>GuildHandler.cpp
1>GroupHandler.cpp
1>GMTicket.cpp
1>DuelHandler.cpp
1>CombatHandler.cpp
1>ChatHandler.cpp
1>CharacterHandler.cpp
1>ChannelHandler.cpp
1>BattlegroundHandler.cpp
1>LogonCommHandler.cpp
1>LogonCommClient.cpp
1>WorldSocket.cpp
1>VoiceChatClientSocket.cpp
1>UnixMetric.cpp
1>Opcodes.cpp
1>AuctionMgr.cpp
1>AuctionHouse.cpp
1>WorldCreator.cpp
1>TerrainMgr.cpp
1>TaxiMgr.cpp
1>ScriptMgr.cpp
1>QuestMgr.cpp
1>LocalizationMgr.cpp
1>EventMgr.cpp
1>AddonMgr.cpp
1>AchievementMgr.cpp
1>ConsoleListener.cpp
1>ConsoleCommands.cpp
1>CConsole.cpp
1>Master.cpp
1>Main.cpp
1>WorldState.cpp
1>World.cpp
1>WeatherMgr.cpp
1>Quest.cpp
1>ObjectMgr.cpp
1>MapScriptInterface.cpp
1>MapMgr.cpp
1>MapCell.cpp
1>Map.cpp
1>CollideInterface.cpp
1>MailSystem.cpp
1>LootMgr.cpp
1>LfgMgr.cpp
1>ArenaTeam.cpp
1>Arenas.cpp
1>WarsongGulch.cpp
1>StrandOfTheAncient.cpp
1>EyeOfTheStorm.cpp
1>BattlegroundMgr.cpp
1>ArathiBasin.cpp
1>AlteracValley.cpp
1>SpellAuras.cpp
1>ObjectContainer.cpp
1>ItemInterface.cpp
1>Item.cpp
1>Container.cpp
1>TransporterHandler.cpp
1>GameObject.cpp
1>DynamicObject.cpp
1>Corpse.cpp
1>Vehicle.cpp
1>Pet.cpp
1>Creature.cpp
1>SpeedDetector.cpp
1>PlayerPacketWrapper.cpp
1>Player.cpp
1>..\..\src\arcemu-world\Player.cpp(38) : warning C4355: 'this' : used in base member initializer list
1>Guild.cpp
1>Group.cpp
1>Unit.cpp
1>Stats.cpp
1>Object.cpp
1>EventableObject.cpp
1>ObjectStorage.cpp
1>DatabaseCleaner.cpp
1>AIInterface.cpp
1>WordFilter.cpp
1>WayPoints.cpp
1>Chat.cpp
1>..\..\src\arcemu-world\Chat.cpp(773) : error C2144: syntax error : 'bool' should be preceded by '}'
1>..\..\src\arcemu-world\Chat.cpp(773) : error C2144: syntax error : 'bool' should be preceded by '}'
1>..\..\src\arcemu-world\Chat.cpp(773) : error C2144: syntax error : 'bool' should be preceded by ';'
1>..\..\src\arcemu-world\Chat.cpp(773) : error C2143: syntax error : missing ';' before '}'
1>..\..\src\arcemu-world\Chat.cpp(773) : error C2059: syntax error : ','
1>..\..\src\arcemu-world\Chat.cpp(775) : error C2143: syntax error : missing ';' before '{'
1>..\..\src\arcemu-world\Chat.cpp(775) : error C2447: '{' : missing function header (old-style formal list?)
1>..\..\src\arcemu-world\Chat.cpp(776) : error C2059: syntax error : '}'
1>..\..\src\arcemu-world\Chat.cpp(776) : error C2143: syntax error : missing ';' before '}'
1>..\..\src\arcemu-world\Chat.cpp(776) : error C2059: syntax error : '}'
1>..\..\src\arcemu-world\Chat.cpp(777) : error C2059: syntax error : 'this'
1>..\..\src\arcemu-world\Chat.cpp(780) : error C2065: '_commandTable' : undeclared identifier
1>..\..\src\arcemu-world\Chat.cpp(781) : error C2059: syntax error : 'while'
1>..\..\src\arcemu-world\Chat.cpp(782) : error C2143: syntax error : missing ';' before '{'
1>..\..\src\arcemu-world\Chat.cpp(782) : error C2447: '{' : missing function header (old-style formal list?)
1>..\..\src\arcemu-world\Chat.cpp(792) : error C2059: syntax error : '}'
1>..\..\src\arcemu-world\Chat.cpp(792) : error C2143: syntax error : missing ';' before '}'
1>..\..\src\arcemu-world\Chat.cpp(792) : error C2059: syntax error : '}'
1>..\..\src\arcemu-world\Chat.cpp(795) : error C2143: syntax error : missing ';' before '{'
1>..\..\src\arcemu-world\Chat.cpp(795) : error C2447: '{' : missing function header (old-style formal list?)
1>Channel.cpp
1>Build log was saved at "file://c:\Users\Jordan\Desktop\Arcemu\branches\untested\win\VC90\arcemu-world___Win32_Release\BuildLog.htm"
1>arcemu-world - 22 error(s), 1 warning(s)
========== Build: 0 succeeded, 1 failed, 5 up-to-date, 0 skipped ==========
 

Reply With Quote
  #12  
Old 10-11-2009
Apple Pi's Avatar
Apple Pi is offline.
Master Sergeant
  
 
Join Date: Feb 2009
Location: Texas
Posts: 95
Nominated 11 Times in 3 Posts
Reputation: 41
Points: 1,936, Level: 3
Points: 1,936, Level: 3 Points: 1,936, Level: 3 Points: 1,936, Level: 3
Level up: 77%, 164 Points needed
Level up: 77% Level up: 77% Level up: 77%
Activity: 0.4%
Activity: 0.4% Activity: 0.4% Activity: 0.4%

I mean want way you are facing such as turning in 90 deg or such
__________________
What once was Moonblade rose from the ashes as Apple Pi!
Reply With Quote
  #13  
Old 10-11-2009
Pwntzyou's Avatar
Pwntzyou is offline.
Contributor
  
 
Join Date: Dec 2007
Location: Ironforge
Posts: 387
Nominated 12 Times in 4 Posts
Reputation: 258
Points: 5,341, Level: 7
Points: 5,341, Level: 7 Points: 5,341, Level: 7 Points: 5,341, Level: 7
Level up: 94%, 59 Points needed
Level up: 94% Level up: 94% Level up: 94%
Activity: 0.3%
Activity: 0.3% Activity: 0.3% Activity: 0.3%

Quote:
Originally Posted by moonblade0421 View Post
I mean want way you are facing such as turning in 90 deg or such

I am not sure what you mean T_T


Like i said before my script does make use of "degrees" (It actually uses radians) to use the player's orientation when porting forward and such
__________________

<3 MysterioussouL for the sig

Last edited by Pwntzyou; 10-11-2009 at 02:21 PM.
Reply With Quote
  #14  
Old 10-11-2009
Zudrik's Avatar
Zudrik is offline.
Sergeant Major
  
 
Join Date: Dec 2008
Location: Pennsylvania
Posts: 170
Reputation: 51
Points: 1,723, Level: 3
Points: 1,723, Level: 3 Points: 1,723, Level: 3 Points: 1,723, Level: 3
Level up: 47%, 377 Points needed
Level up: 47% Level up: 47% Level up: 47%
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%

Quote:
Originally Posted by Pwntzyou View Post
I am not sure what you mean T_T


Like i said before my script does make use of "degrees" (It actually uses radians) to use the player's orientation when porting forward and such
They mean instead of warping to a different location or whatever, just change the direction they are facing (i.e. 90 degree turn).
Reply With Quote
  #15  
Old 10-11-2009
Pwntzyou's Avatar
Pwntzyou is offline.
Contributor
  
 
Join Date: Dec 2007
Location: Ironforge
Posts: 387
Nominated 12 Times in 4 Posts
Reputation: 258
Points: 5,341, Level: 7
Points: 5,341, Level: 7 Points: 5,341, Level: 7 Points: 5,341, Level: 7
Level up: 94%, 59 Points needed
Level up: 94% Level up: 94% Level up: 94%
Activity: 0.3%
Activity: 0.3% Activity: 0.3% Activity: 0.3%

Quote:
Originally Posted by Zudrik View Post
They mean instead of warping to a different location or whatever, just change the direction they are facing (i.e. 90 degree turn).
Ahh now that makes sense, I added it to the code but it is untested (Took about two seconds btw)


.warp rotate X

X can be 1-360
__________________

<3 MysterioussouL for the sig

Last edited by Pwntzyou; 10-11-2009 at 11:19 PM.
Reply With Quote
Reply

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



All times are GMT -4. The time now is 12:59 AM.




Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2

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 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524