forked from RolePlayGateway/roleplaygateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data
1356 lines (1356 loc) · 325 KB
/
data
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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
404.php:20:$user->session_begin();
404.php:21:$auth->acl($user->data);
404.php:22:$user->setup();
about.php:10:$user->session_begin();
about.php:11:$auth->acl($user->data);
about.php:12:$user->setup('viewforum');
avatar.php:10:$user->session_begin();
avatar.php:11:$auth->acl($user->data);
avatar.php:12:$user->setup('viewforum');
bb3portal.php:12:$user->session_begin();
bb3portal.php:13:$auth->acl($user->data);
bb3portal.php:14:$user->setup('viewforum');
common.php:231:$user->add_lang('mods/phpBBFolk_lang');
cron.php:22:$user->session_begin(false);
cron.php:23:$auth->acl($user->data);
cron.php:207: $user->session_gc();
download.php:102:$user->session_begin(false);
download.php:103:$auth->acl($user->data);
download.php:104:$user->setup('viewtopic');
download.php:138: $own_attachment = ($auth->acl_get('a_attach') || $attachment['poster_id'] == $user->data['user_id']) ? true : false;
download.php:190: trigger_error(sprintf($user->lang['EXTENSION_DISABLED_AFTER_POSTING'], $attachment['extension']));
download.php:196: trigger_error($user->lang['LINKAGE_FORBIDDEN']);
download.php:217:if (($display_cat == ATTACHMENT_CATEGORY_IMAGE || $display_cat == ATTACHMENT_CATEGORY_THUMB) && !$user->optionget('viewimg'))
download.php:222:if ($display_cat == ATTACHMENT_CATEGORY_FLASH && !$user->optionget('viewflash'))
download.php:240:if ($display_cat == ATTACHMENT_CATEGORY_IMAGE && $mode === 'view' && (strpos($attachment['mimetype'], 'image') === 0) && strpos(strtolower($user->browser), 'msie') !== false)
download.php:252: trigger_error($user->lang['PHYSICAL_DOWNLOAD_NOT_POSSIBLE']);
download.php:379: trigger_error($user->lang['ERROR_NO_ATTACHMENT'] . '<br /><br />' . sprintf($user->lang['FILE_NOT_FOUND_404'], $filename));
download.php:386: $attachment['mimetype'] = (strpos(strtolower($user->browser), 'msie') !== false || strpos(strtolower($user->browser), 'opera') !== false) ? 'application/octetstream' : 'application/octet-stream';
download.php:405: trigger_error($user->lang['UNABLE_TO_DELIVER_FILE'] . '<br />' . sprintf($user->lang['TRACKED_PHP_ERROR'], $php_errormsg));
download.php:432: if (empty($user->browser) || (strpos(strtolower($user->browser), 'msie') !== false))
download.php:435: if (empty($user->browser) || (strpos(strtolower($user->browser), 'msie 6.0') !== false))
faq.php:20:$user->session_begin();
faq.php:21:$auth->acl($user->data);
faq.php:22:$user->setup();
faq.php:30: $l_title = $user->lang['BBCODE_GUIDE'];
faq.php:31: $user->add_lang('bbcode', false, true);
faq.php:35: $l_title = $user->lang['FAQ_EXPLAIN'];
faq.php:36: $user->add_lang('faq', false, true);
faq.php:42:foreach ($user->help as $help_ary)
faq.php:62: 'L_BACK_TO_TOP' => $user->lang['BACK_TO_TOP'])
google_py_sitemap.xml:344: <loc>http://www.roleplaygateway.com/500-unique-user-mark-hit-for-febuary-t604.html</loc>
google_py_sitemap.xml:87546: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232-180.html</loc>
google_py_sitemap.xml:87550: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232-20.html</loc>
google_py_sitemap.xml:87554: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232-200.html</loc>
google_py_sitemap.xml:87558: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232-240.html</loc>
google_py_sitemap.xml:87562: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232-260.html</loc>
google_py_sitemap.xml:87566: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232-280.html</loc>
google_py_sitemap.xml:87570: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232-300.html</loc>
google_py_sitemap.xml:87574: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232-400.html</loc>
google_py_sitemap.xml:87578: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232-540.html</loc>
google_py_sitemap.xml:87582: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232-60.html</loc>
google_py_sitemap.xml:87586: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232-80.html</loc>
google_py_sitemap.xml:87590: <loc>http://www.roleplaygateway.com/guess-the-user-below-you-t4232.html</loc>
google_py_sitemap.xml:100322: <loc>http://www.roleplaygateway.com/mercenary-jago-gwinguser-t938.html</loc>
google_py_sitemap.xml:100850: <loc>http://www.roleplaygateway.com/muser-m4918.html</loc>
google_py_sitemap.xml:175444: <loc>http://www.roleplaygateway.com/the-rpg-user-manual-t7.html</loc>
google_py_sitemap1.xml:130808: <loc>http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html</loc>
google_py_sitemap1.xml:131162: <loc>http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html</loc>
google_py_sitemap1.xml:131166: <loc>http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html?sid=a810b10232a67925e490021e8571411e</loc>
google_py_sitemap1.xml:131170: <loc>http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html?sid=b936b5773d95542208feeea42eb03f72</loc>
google_py_sitemap1.xml:132628: <loc>http://www.roleplaygateway.com/user-manual-comments-read-split-t836.html</loc>
index.php:24:$user->session_begin();
index.php:25:$auth->acl($user->data);
index.php:26:$user->setup('viewforum');
index.php:29:if ( $user->data['is_registered'] ) {
index.php:34: if ( !$user->data['is_registered'] ) {
index.php:72: AND ug.user_id = ' . $user->data['user_id'] . '
index.php:76: AND (g.group_type <> ' . GROUP_HIDDEN . ' OR ug.user_id = ' . $user->data['user_id'] . ')
index.php:88: $legend .= (($legend != '') ? ', ' : '') . '<span' . $colour_text . '>' . $user->lang['G_BOTS'] . '</span>';
index.php:97: $legend .= (($legend != '') ? ', ' : '') . '<a' . $colour_text . ' href="' . append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=group&g=' . $row['group_id']) . '">' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '</a>';
index.php:106: $now = getdate(time() + $user->timezone + $user->dst - date('Z'));
index.php:142: 'TOTAL_POSTS' => sprintf($user->lang[$l_total_post_s], $total_posts),
index.php:143: 'TOTAL_TOPICS' => sprintf($user->lang[$l_total_topic_s], $total_topics),
index.php:144: 'TOTAL_USERS' => sprintf($user->lang[$l_total_user_s], $total_users),
index.php:145: 'NEWEST_USER' => sprintf($user->lang['NEWEST_USER'], get_username_string('full', $config['newest_user_id'], $config['newest_username'], $config['newest_user_colour'])),
index.php:150: 'FORUM_IMG' => $user->img('forum_read', 'NO_NEW_POSTS'),
index.php:151: 'FORUM_NEW_IMG' => $user->img('forum_unread', 'NEW_POSTS'),
index.php:152: 'FORUM_LOCKED_IMG' => $user->img('forum_read_locked', 'NO_NEW_POSTS_LOCKED'),
index.php:153: 'FORUM_NEW_LOCKED_IMG' => $user->img('forum_unread_locked', 'NO_NEW_POSTS_LOCKED'),
index.php:158: 'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx", 'mark=forums') : '',
index.php:159: 'U_MCP' => ($auth->acl_get('m_') || $auth->acl_getf_global('m_')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=main&mode=front', true, $user->session_id) : '')
leaderboard.php:8:$user->session_begin();
leaderboard.php:9:$auth->acl($user->data);
leaderboard.php:10:$user->setup();
links.php:8:$user->session_begin();
links.php:9:$auth->acl($user->data);
links.php:10:$user->setup();
mcp.php:22:$user->session_begin();
mcp.php:23:$auth->acl($user->data);
mcp.php:24:$user->setup('mcp');
mcp.php:45:if (!$user->data['is_registered'])
mcp.php:47: if ($user->data['is_bot'])
mcp.php:52: login_box('', $user->lang['LOGIN_EXPLAIN_MCP']);
mcp.php:121: if ($quickmod && isset($user_quickmod_actions[$action]) && $user->data['is_registered'] && $auth->acl_gets($user_quickmod_actions[$action], $forum_id))
mcp.php:124: if ($topic_info[$topic_id]['topic_poster'] == $user->data['user_id'])
mcp.php:382: 'ON' => 'tt.user_id = ' . $user->data['user_id'] . ' AND t.topic_id = tt.topic_id'
mcp.php:387: 'ON' => 'ft.user_id = ' . $user->data['user_id'] . ' AND t.forum_id = ft.forum_id'
mcp.php:466: 'ON' => 'tt.user_id = ' . $user->data['user_id'] . ' AND t.topic_id = tt.topic_id'
mcp.php:471: 'ON' => 'ft.user_id = ' . $user->data['user_id'] . ' AND t.forum_id = ft.forum_id'
mcp.php:526: $read_tracking_join = ' LEFT JOIN ' . FORUMS_TRACK_TABLE . ' ft ON (ft.user_id = ' . $user->data['user_id'] . '
mcp.php:690: $sort_dir_text = array('a' => $user->lang['ASCENDING'], 'd' => $user->lang['DESCENDING']);
mcp.php:695: $limit_days = array(0 => $user->lang['ALL_TOPICS'], 1 => $user->lang['1_DAY'], 7 => $user->lang['7_DAYS'], 14 => $user->lang['2_WEEKS'], 30 => $user->lang['1_MONTH'], 90 => $user->lang['3_MONTHS'], 180 => $user->lang['6_MONTHS'], 365 => $user->lang['1_YEAR']);
mcp.php:696: $sort_by_text = array('a' => $user->lang['AUTHOR'], 't' => $user->lang['POST_TIME'], 'tt' => $user->lang['TOPIC_TIME'], 'r' => $user->lang['REPLIES'], 's' => $user->lang['SUBJECT'], 'v' => $user->lang['VIEWS']);
mcp.php:703: $limit_days = array(0 => $user->lang['ALL_POSTS'], 1 => $user->lang['1_DAY'], 7 => $user->lang['7_DAYS'], 14 => $user->lang['2_WEEKS'], 30 => $user->lang['1_MONTH'], 90 => $user->lang['3_MONTHS'], 180 => $user->lang['6_MONTHS'], 365 => $user->lang['1_YEAR']);
mcp.php:704: $sort_by_text = array('a' => $user->lang['AUTHOR'], 't' => $user->lang['POST_TIME'], 's' => $user->lang['SUBJECT']);
mcp.php:710: $limit_days = array(0 => $user->lang['ALL_REPORTS'], 1 => $user->lang['1_DAY'], 7 => $user->lang['7_DAYS'], 14 => $user->lang['2_WEEKS'], 30 => $user->lang['1_MONTH'], 90 => $user->lang['3_MONTHS'], 180 => $user->lang['6_MONTHS'], 365 => $user->lang['1_YEAR']);
mcp.php:711: $sort_by_text = array('a' => $user->lang['AUTHOR'], 'r' => $user->lang['REPORTER'], 'p' => $user->lang['POST_TIME'], 't' => $user->lang['REPORT_TIME'], 's' => $user->lang['SUBJECT']);
mcp.php:716: $limit_days = array(0 => $user->lang['ALL_ENTRIES'], 1 => $user->lang['1_DAY'], 7 => $user->lang['7_DAYS'], 14 => $user->lang['2_WEEKS'], 30 => $user->lang['1_MONTH'], 90 => $user->lang['3_MONTHS'], 180 => $user->lang['6_MONTHS'], 365 => $user->lang['1_YEAR']);
mcp.php:717: $sort_by_text = array('u' => $user->lang['SORT_USERNAME'], 't' => $user->lang['SORT_DATE'], 'i' => $user->lang['SORT_IP'], 'o' => $user->lang['SORT_ACTION']);
memberlist.php:21:$user->session_begin();
memberlist.php:22:$auth->acl($user->data);
memberlist.php:23:$user->setup(array('memberlist', 'groups'));
memberlist.php:48: if ($user->data['user_id'] != ANONYMOUS)
memberlist.php:53: login_box('', ((isset($user->lang['LOGIN_EXPLAIN_' . strtoupper($mode)])) ? $user->lang['LOGIN_EXPLAIN_' . strtoupper($mode)] : $user->lang['LOGIN_EXPLAIN_MEMBERLIST']));
memberlist.php:77: $page_title = $user->lang['THE_TEAM'];
memberlist.php:166: 'ON' => 'ug.group_id = g.group_id AND ug.user_pending = 0 AND ug.user_id = ' . $user->data['user_id']
memberlist.php:225:// $s_forum_select = '<option value="">' . $user->lang['FORUM_UNDISCLOSED'] . '</option>';
memberlist.php:230: if ($row['group_type'] == GROUP_HIDDEN && !$auth->acl_gets('a_group', 'a_groupadd', 'a_groupdel') && $row['ug_user_id'] != $user->data['user_id'])
memberlist.php:232: $group_name = $user->lang['GROUP_UNDISCLOSED'];
memberlist.php:237: $group_name = ($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name'];
memberlist.php:266: 'PM_IMG' => $user->img('icon_contact_pm', $user->lang['SEND_PRIVATE_MESSAGE']))
memberlist.php:272: $page_title = $user->lang['IM_USER'];
memberlist.php:340: $subject = sprintf($user->lang['IM_JABBER_SUBJECT'], $user->data['username'], $config['server_name']);
memberlist.php:353: $messenger->replyto($user->data['user_email']);
memberlist.php:358: 'FROM_USERNAME' => htmlspecialchars_decode($user->data['username']),
memberlist.php:389: 'L_SEND_IM_EXPLAIN' => $user->lang['IM_' . $lang],
memberlist.php:390: 'L_IM_SENT_JABBER' => sprintf($user->lang['IM_SENT_JABBER'], $row['username']),
memberlist.php:420: if (!$auth->acl_get('a_user') && $user->data['user_type'] != USER_FOUNDER)
memberlist.php:437: if ( $user->data['is_registered'] ) {
memberlist.php:441: if ( !$user->data['is_registered'] ) {
memberlist.php:460: $group_options .= '<option value="' . $row['group_id'] . '"' . (($row['group_id'] == $member['group_id']) ? ' selected="selected"' : '') . '>' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '</option>';
memberlist.php:468: AND user_id = {$user->data['user_id']}";
memberlist.php:533: if ($user->data['user_id'] != $user_id && $user->data['is_registered'])
memberlist.php:574: 'POSTS_DAY' => sprintf($user->lang['POST_DAY'], $posts_per_day),
memberlist.php:575: 'POSTS_PCT' => sprintf($user->lang['POST_PCT'], $percentage),
memberlist.php:584: 'PM_IMG' => $user->img('icon_contact_pm', $user->lang['SEND_PRIVATE_MESSAGE']),
memberlist.php:585: 'EMAIL_IMG' => $user->img('icon_contact_email', $user->lang['EMAIL']),
memberlist.php:586: 'WWW_IMG' => $user->img('icon_contact_www', $user->lang['WWW']),
memberlist.php:587: 'ICQ_IMG' => $user->img('icon_contact_icq', $user->lang['ICQ']),
memberlist.php:588: 'AIM_IMG' => $user->img('icon_contact_aim', $user->lang['AIM']),
memberlist.php:589: 'MSN_IMG' => $user->img('icon_contact_msnm', $user->lang['MSNM']),
memberlist.php:590: 'YIM_IMG' => $user->img('icon_contact_yahoo', $user->lang['YIM']),
memberlist.php:591: 'JABBER_IMG' => $user->img('icon_contact_jabber', $user->lang['JABBER']),
memberlist.php:592: 'SEARCH_IMG' => $user->img('icon_user_search', $user->lang['SEARCH']),
memberlist.php:598: 'U_USER_ADMIN' => ($auth->acl_get('a_user')) ? append_sid("{$phpbb_root_path}adm/index.$phpEx", 'i=users&mode=overview&u=' . $user_id, true, $user->session_id) : '',
memberlist.php:599: 'U_SWITCH_PERMISSIONS' => ($auth->acl_get('a_switchperm') && $user->data['user_id'] != $user_id) ? append_sid("{$phpbb_root_path}ucp.$phpEx", "mode=switch_perm&u={$user_id}") : '',
memberlist.php:601: 'S_ZEBRA' => ($user->data['user_id'] != $user_id && $user->data['is_registered'] && $zebra_enabled) ? true : false,
memberlist.php:624: $user->add_lang('acp/common');
memberlist.php:626: $inactive_reason = $user->lang['INACTIVE_REASON_UNKNOWN'];
memberlist.php:631: $inactive_reason = $user->lang['INACTIVE_REASON_REGISTER'];
memberlist.php:635: $inactive_reason = $user->lang['INACTIVE_REASON_PROFILE'];
memberlist.php:639: $inactive_reason = $user->lang['INACTIVE_REASON_MANUAL'];
memberlist.php:643: $inactive_reason = $user->lang['INACTIVE_REASON_REMIND'];
memberlist.php:662: $page_title = $user->lang['SEND_EMAIL'];
memberlist.php:678: if (time() - $user->data['user_emailtime'] < $config['flood_interval'])
memberlist.php:781: $error[] = $user->lang['EMPTY_SUBJECT_EMAIL'];
memberlist.php:786: $error[] = $user->lang['EMPTY_MESSAGE_EMAIL'];
memberlist.php:797: $error[] = $user->lang['EMPTY_ADDRESS_EMAIL'];
memberlist.php:802: $error[] = $user->lang['EMPTY_NAME_EMAIL'];
memberlist.php:810: WHERE user_id = ' . $user->data['user_id'];
memberlist.php:835: 'email_lang' => $user->data['user_lang'],
memberlist.php:836: 'email' => $user->data['user_email'],
memberlist.php:837: 'name' => $user->data['username'],
memberlist.php:838: 'username' => $user->data['username'],
memberlist.php:840: 'user_jabber' => $user->data['user_jabber'],
memberlist.php:841: 'user_notify_type' => ($user_id) ? $user->data['user_notify_type'] : NOTIFY_EMAIL,
memberlist.php:850: $messenger->replyto($user->data['user_email']);
memberlist.php:865: $messenger->headers('X-AntiAbuse: User_id - ' . $user->data['user_id']);
memberlist.php:866: $messenger->headers('X-AntiAbuse: Username - ' . $user->data['username']);
memberlist.php:867: $messenger->headers('X-AntiAbuse: User IP - ' . $user->ip);
memberlist.php:872: 'FROM_USERNAME' => htmlspecialchars_decode($user->data['username']),
memberlist.php:888: $message = ($user_id) ? sprintf($user->lang['RETURN_INDEX'], '<a href="' . append_sid("{$phpbb_root_path}index.$phpEx") . '">', '</a>') : sprintf($user->lang['RETURN_TOPIC'], '<a href="' . append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f={$row['forum_id']}&t=$topic_id") . '">', '</a>');
memberlist.php:889: trigger_error($user->lang['EMAIL_SENT'] . '<br /><br />' . $message);
memberlist.php:899: 'L_EMAIL_BODY_EXPLAIN' => $user->lang['EMAIL_BODY_EXPLAIN'],
memberlist.php:910: 'L_EMAIL_BODY_EXPLAIN' => $user->lang['EMAIL_TOPIC_EXPLAIN'],
memberlist.php:924: $page_title = $user->lang['MEMBERLIST'];
memberlist.php:928: $sort_key_text = array('a' => $user->lang['SORT_USERNAME'], 'b' => $user->lang['SORT_LOCATION'], 'c' => $user->lang['SORT_JOINED'], 'd' => $user->lang['SORT_POST_COUNT'], 'e' => $user->lang['SORT_EMAIL'], 'f' => $user->lang['WEBSITE'], 'g' => $user->lang['ICQ'], 'h' => $user->lang['AIM'], 'i' => $user->lang['MSNM'], 'j' => $user->lang['YIM'], 'k' => $user->lang['JABBER']);
memberlist.php:932: $sort_key_text['l'] = $user->lang['SORT_LAST_ACTIVE'];
memberlist.php:934: $sort_key_text['m'] = $user->lang['SORT_RANK'];
memberlist.php:944: $sort_dir_text = array('a' => $user->lang['ASCENDING'], 'd' => $user->lang['DESCENDING']);
memberlist.php:993: $find_count = array('lt' => $user->lang['LESS_THAN'], 'eq' => $user->lang['EQUAL_TO'], 'gt' => $user->lang['MORE_THAN']);
memberlist.php:1001: $find_time = array('lt' => $user->lang['BEFORE'], 'gt' => $user->lang['AFTER']);
memberlist.php:1112: LEFT JOIN ' . USER_GROUP_TABLE . ' ug ON (ug.user_pending = 0 AND ug.user_id = ' . $user->data['user_id'] . " AND ug.group_id = $group_id)
memberlist.php:1123: if ( $user->data['is_registered'] ) {
memberlist.php:1127: if ( !$user->data['is_registered'] ) {
memberlist.php:1151: if (!$auth->acl_gets('a_group', 'a_groupadd', 'a_groupdel') && $group_row['user_id'] != $user->data['user_id'])
memberlist.php:1188: 'GROUP_NAME' => ($group_row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $group_row['group_name']] : $group_row['group_name'],
memberlist.php:1190: 'GROUP_TYPE' => $user->lang['GROUP_IS_' . $group_row['l_group_type']],
memberlist.php:1237: $s_char_options .= '<option value="other"' . (($first_char == 'other') ? ' selected="selected"' : '') . '>' . $user->lang['OTHER'] . '</option>';
memberlist.php:1313: AND ug.user_id = ' . $user->data['user_id'] . '
memberlist.php:1316: WHERE (g.group_type <> ' . GROUP_HIDDEN . ' OR ug.user_id = ' . $user->data['user_id'] . ')
memberlist.php:1323: $s_group_select .= '<option value="' . $row['group_id'] . '"' . (($group_selected == $row['group_id']) ? ' selected="selected"' : '') . '>' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '</option>';
memberlist.php:1478: 'TOTAL_USERS' => ($total_users == 1) ? $user->lang['LIST_USER'] : sprintf($user->lang['LIST_USERS'], $total_users),
memberlist.php:1480: 'PROFILE_IMG' => $user->img('icon_user_profile', $user->lang['PROFILE']),
memberlist.php:1481: 'PM_IMG' => $user->img('icon_contact_pm', $user->lang['SEND_PRIVATE_MESSAGE']),
memberlist.php:1482: 'EMAIL_IMG' => $user->img('icon_contact_email', $user->lang['EMAIL']),
memberlist.php:1483: 'WWW_IMG' => $user->img('icon_contact_www', $user->lang['WWW']),
memberlist.php:1484: 'ICQ_IMG' => $user->img('icon_contact_icq', $user->lang['ICQ']),
memberlist.php:1485: 'AIM_IMG' => $user->img('icon_contact_aim', $user->lang['AIM']),
memberlist.php:1486: 'MSN_IMG' => $user->img('icon_contact_msnm', $user->lang['MSNM']),
memberlist.php:1487: 'YIM_IMG' => $user->img('icon_contact_yahoo', $user->lang['YIM']),
memberlist.php:1488: 'JABBER_IMG' => $user->img('icon_contact_jabber', $user->lang['JABBER']),
memberlist.php:1489: 'SEARCH_IMG' => $user->img('icon_user_search', $user->lang['SEARCH']),
memberlist.php:1576: $now = getdate(time() + $user->timezone + $user->dst - date('Z'));
memberlist.php:1596: 'JOINED' => $user->format_date($data['user_regdate']),
memberlist.php:1597: 'VISITED' => (empty($last_visit)) ? ' - ' : $user->format_date($last_visit),
memberlist.php:1609: 'ONLINE_IMG' => (!$config['load_onlinetrack']) ? '' : (($online) ? $user->img('icon_user_online', 'ONLINE') : $user->img('icon_user_offline', 'OFFLINE')),
memberlist.php:1617: 'U_NOTES' => $auth->acl_getf_global('m_') ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&mode=user_notes&u=' . $user_id, true, $user->session_id) : '',
memberlist.php:1618: 'U_WARN' => $auth->acl_get('m_warn') ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=warn&mode=warn_user&u=' . $user_id, true, $user->session_id) : '',
memberlist.php:1634: 'USER_JABBER_IMG' => ($data['user_jabber']) ? $user->img('icon_contact_jabber', $data['user_jabber']) : '',
memberlist.php:1636: 'L_VIEWING_PROFILE' => sprintf($user->lang['VIEWING_PROFILE'], $username),
outbound_links.txt:167: [162] => http://www.roleplaygateway.com/rules-t1369.html:1d7ulps9][img:1d7ulps9]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1d7ulps9][/url:1d7ulps9][/left:1d7ulps9][right:1d7ulps9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1d7ulps9][img:1d7ulps9]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1d7ulps9][/url:1d7ulps9][/right:1d7ulps9][center:1d7ulps9]Welcome to the site. I was actually searching for a good roleplay site when I was on google... turns out that this place rocks ><[/center:1d7ulps9]
outbound_links.txt:172: [167] => http://www.roleplaygateway.com/rules-t1369.html:12hao76z][img:12hao76z]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:12hao76z][/url:12hao76z][/left:12hao76z][right:12hao76z][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:12hao76z][img:12hao76z]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:12hao76z][/url:12hao76z][/right:12hao76z][center:12hao76z]
outbound_links.txt:185: [180] => http://www.roleplaygateway.com/rules-t1369.html:3q3vl07o][img:3q3vl07o]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3q3vl07o][/url:3q3vl07o][/left:3q3vl07o][right:3q3vl07o][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3q3vl07o][img:3q3vl07o]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3q3vl07o][/url:3q3vl07o][/right:3q3vl07o][center:3q3vl07o]Welcome to the site mang, good job hating on Gaia. -Assists in the hate tossing.-[/center:3q3vl07o]
outbound_links.txt:191: [186] => http://www.roleplaygateway.com/rules-t1369.html:1iui8vtv][img:1iui8vtv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1iui8vtv][/url:1iui8vtv][/left:1iui8vtv][right:1iui8vtv][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1iui8vtv][img:1iui8vtv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1iui8vtv][/url:1iui8vtv][/right:1iui8vtv][center:1iui8vtv]Welecome to the site Alexa. ^^ You can change that thingy in your User Control Panel (Next to the messages thingy at the top) Anyways, glad to have a new roleplayer to the site. Just PM(Private Message) the staff if you need any help![/center:1iui8vtv]
outbound_links.txt:230: [225] => http://www.roleplaygateway.com/rules-t1369.html:2e0rl7ba][img:2e0rl7ba]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2e0rl7ba][/url:2e0rl7ba][/left:2e0rl7ba][right:2e0rl7ba][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2e0rl7ba][img:2e0rl7ba]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2e0rl7ba][/url:2e0rl7ba][/right:2e0rl7ba][center:2e0rl7ba]
outbound_links.txt:289: [284] => http://www.roleplaygateway.com/rules-t1369.html:2w1yfbnw][img:2w1yfbnw]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2w1yfbnw][/url:2w1yfbnw][/left:2w1yfbnw][right:2w1yfbnw][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2w1yfbnw][img:2w1yfbnw]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2w1yfbnw][/url:2w1yfbnw][/right:2w1yfbnw][center:2w1yfbnw]In all reality these two links should put you on your way to a new world of gaming. However, if you really want to learn, drop by the Roleplay Academy. Our tutors would be more than happy to teach you![/center:2w1yfbnw]
outbound_links.txt:291: [286] => http://www.roleplaygateway.com/rules-t1369.html:1tt58x1x][img:1tt58x1x]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1tt58x1x][/url:1tt58x1x][/left:1tt58x1x][right:1tt58x1x][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1tt58x1x][img:1tt58x1x]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1tt58x1x][/url:1tt58x1x][/right:1tt58x1x][center:1tt58x1x]Reminds me of Prometheus and Bob from Kablam... Epic... Look that up on youtube if yeh dunno what I mean. Anyways! Welcome to RPG! If you need any help be sure to pm one of the staff. We also have a Roleplay Academy if you really wish to learn how to RP.[/center:1tt58x1x]
outbound_links.txt:301: [296] => http://www.roleplaygateway.com/rules-t1369.html:3zzknfu5][img:3zzknfu5]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3zzknfu5][/url:3zzknfu5][/left:3zzknfu5][right:3zzknfu5][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3zzknfu5][img:3zzknfu5]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3zzknfu5][/url:3zzknfu5][/right:3zzknfu5][center:3zzknfu5]Yeh don't really even have to wait for an invitation. Many of our roleplays are open as along as you ask a game master. (Person running the roleplay.) However, we also have a roleplay academy! You should check it out ^^. Welcome to RPG![/center:3zzknfu5]
outbound_links.txt:464: [459] => http://www.roleplaygateway.com/the-rpg-user-manual-all-users-must-read-t7.html#p54599:7e421][b:7e421]Chapter 1[/b:7e421]
[i:7e421]What is RPGw and Roleplaying?[/i:7e421][/url:7e421]
outbound_links.txt:465: [460] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html#p54600:7e421][b:7e421]Chapter 2[/b:7e421]
[i:7e421]Character Creation[/i:7e421][/url:7e421]
outbound_links.txt:466: [461] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html#p54601:7e421][b:7e421]Chapter 3[/b:7e421]
[i:7e421]Roleplaying[/i:7e421][/url:7e421]
outbound_links.txt:467: [462] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html#p54602:7e421][b:7e421]Chapter 4[/b:7e421]
[i:7e421]Frequently Used Terms[/i:7e421][/url:7e421]
outbound_links.txt:468: [463] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html#p54603:7e421][b:7e421]Chapter 5[/b:7e421]
[i:7e421]Extra Information[/i:7e421][/url:7e421]
outbound_links.txt:469: [464] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html#p54604:7e421][b:7e421]Chapter 6[/b:7e421]
[i:7e421]Tips and Links[/i:7e421][/url:7e421]
outbound_links.txt:2330: [2325] => http://www.roleplaygateway.com/role-play-academy-f125.html:742de]RPA[/url:742de] and after you have read over and understood the [url=http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:742de]Gwing User Manual[/url:742de] and keep to the [url=http://www.roleplaygateway.com/role-players-creed-t3378.html:742de]Role Player's Creed,[/url:742de] perhaps THEN you could be considered [quote:742de]the epitome of rpg posting[/quote:742de] and everyone will [quote:742de] worsphip my abilities and beg for more. [/quote:742de] [By the way, worship is spelled with one p.]
outbound_links.txt:2443: [2438] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:b5640]The Gwing User Manual[/url:b5640]
outbound_links.txt:2872: [2867] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:665b0]Rules[/url:665b0][/b:665b0]
outbound_links.txt:2879: [2874] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:825ce]Rules[/url:825ce][/b:825ce]
outbound_links.txt:2889: [2884] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:7e6f5]Rules[/url:7e6f5][/b:7e6f5]
outbound_links.txt:2893: [2888] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:5248c]Rules[/url:5248c][/b:5248c]
outbound_links.txt:2900: [2895] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:e9a5b]Rules[/url:e9a5b][/b:e9a5b]
outbound_links.txt:2910: [2905] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:3188d]Rules[/url:3188d][/b:3188d]
outbound_links.txt:2924: [2919] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:1c1ce]Rules[/url:1c1ce][/b:1c1ce]
outbound_links.txt:2928: [2923] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:de9e5]Rules[/url:de9e5][/b:de9e5]
outbound_links.txt:2932: [2927] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:b9280]Rules[/url:b9280][/b:b9280]
outbound_links.txt:2942: [2937] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:fa5a6]Rules[/url:fa5a6][/b:fa5a6]
outbound_links.txt:2956: [2951] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:6bbb2]Rules[/url:6bbb2][/b:6bbb2]
outbound_links.txt:2964: [2959] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:cef72]Rules[/url:cef72][/b:cef72]
outbound_links.txt:2973: [2968] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:ae25d]Rules[/url:ae25d][/b:ae25d]
outbound_links.txt:2989: [2984] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:9e1b3]Rules[/url:9e1b3][/b:9e1b3]
outbound_links.txt:2994: [2989] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:9f263]Rules[/url:9f263][/b:9f263]
outbound_links.txt:3008: [3003] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:f4da7]Rules[/url:f4da7][/b:f4da7]
outbound_links.txt:3016: [3011] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:0aae5]Rules[/url:0aae5][/b:0aae5]
outbound_links.txt:3021: [3016] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:4451a]Rules[/url:4451a][/b:4451a]
outbound_links.txt:3049: [3044] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:d3242]Rules[/url:d3242][/b:d3242]
outbound_links.txt:3053: [3048] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:45347]Rules[/url:45347][/b:45347]
outbound_links.txt:3057: [3052] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:2ebc1]Rules[/url:2ebc1][/b:2ebc1]
outbound_links.txt:3061: [3056] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:31a16]Rules[/url:31a16][/b:31a16]
outbound_links.txt:3069: [3064] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:c41c1]Rules[/url:c41c1][/b:c41c1]
outbound_links.txt:3076: [3071] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:0f3fc]Rules[/url:0f3fc][/b:0f3fc]
outbound_links.txt:3080: [3075] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:74ffd]Rules[/url:74ffd][/b:74ffd]
outbound_links.txt:3097: [3092] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:81cf6]Rules[/url:81cf6][/b:81cf6]
outbound_links.txt:3102: [3097] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:bc07a]Rules[/url:bc07a][/b:bc07a]
outbound_links.txt:3106: [3101] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:49fd1]Rules[/url:49fd1][/b:49fd1]
outbound_links.txt:3126: [3121] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:f649b]Rules[/url:f649b][/b:f649b]
outbound_links.txt:3136: [3131] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:378ef]Rules[/url:378ef][/b:378ef]
outbound_links.txt:3141: [3136] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:cbeaf]Rules[/url:cbeaf][/b:cbeaf]
outbound_links.txt:3190: [3185] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:63f75]Rules[/url:63f75][/b:63f75]
outbound_links.txt:3195: [3190] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:52978]Rules[/url:52978][/b:52978]
outbound_links.txt:3218: [3213] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:27ddb]Rules[/url:27ddb][/b:27ddb]
outbound_links.txt:3222: [3217] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:26b5d]Rules[/url:26b5d][/b:26b5d]
outbound_links.txt:3233: [3228] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:d09cc]Rules[/url:d09cc][/b:d09cc]
outbound_links.txt:3237: [3232] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:21c8f]Rules[/url:21c8f][/b:21c8f]
outbound_links.txt:3275: [3270] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:2y04jni3]Rules[/url:2y04jni3][/b:2y04jni3]
outbound_links.txt:3299: [3294] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:k2upkigr]Rules[/url:k2upkigr][/b:k2upkigr]
outbound_links.txt:3303: [3298] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:32znaajv]Rules[/url:32znaajv][/b:32znaajv]
outbound_links.txt:3307: [3302] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:2nplxfhg]Rules[/url:2nplxfhg][/b:2nplxfhg]
outbound_links.txt:3311: [3306] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:37a2yyn6]Rules[/url:37a2yyn6][/b:37a2yyn6]
outbound_links.txt:3317: [3312] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:zcs5n7yk]Rules[/url:zcs5n7yk][/b:zcs5n7yk]
outbound_links.txt:3430: [3425] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:3ac2t1te]Rules[/url:3ac2t1te][/b:3ac2t1te]
outbound_links.txt:3435: [3430] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:1jw4qxpa]Rules[/url:1jw4qxpa][/b:1jw4qxpa]
outbound_links.txt:3442: [3437] => http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:8pkyruco]Rules[/url:8pkyruco][/b:8pkyruco]
outbound_links.txt:3738: [3733] => http://www.roleplaygateway.com/the-newbie-guide-roleplaygateway-read-this-first-t2769.html:3f5wu1uz]Newbie's Guide to RolePlayGateway[/url:3f5wu1uz], then follow the links spread throughout the article for more information. Your first stop should be the [url=http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:3f5wu1uz]GWing User Manual[/url:3f5wu1uz]
outbound_links.txt:3976: [3971] => http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:emx2uca2]GWing Manual (Now the RPGw User Manual[/url:emx2uca2]
outbound_links.txt:3978: [3973] => http://www.roleplaygateway.com/rules-t1369.html:1ypamnqj][img:1ypamnqj]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1ypamnqj][/url:1ypamnqj][/left:1ypamnqj][right:1ypamnqj][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1ypamnqj][img:1ypamnqj]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1ypamnqj][/url:1ypamnqj][/right:1ypamnqj][center:1ypamnqj]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1ypamnqj]
outbound_links.txt:3983: [3978] => http://www.roleplaygateway.com/rules-t1369.html:2h1x28ug][img:2h1x28ug]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2h1x28ug][/url:2h1x28ug][/left:2h1x28ug][right:2h1x28ug][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2h1x28ug][img:2h1x28ug]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2h1x28ug][/url:2h1x28ug][/right:2h1x28ug][center:2h1x28ug]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:2h1x28ug]
outbound_links.txt:4010: [4005] => http://www.roleplaygateway.com/rules-t1369.html:5whr8s9x][img:5whr8s9x]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:5whr8s9x][/url:5whr8s9x][/left:5whr8s9x][right:5whr8s9x][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:5whr8s9x][img:5whr8s9x]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:5whr8s9x][/url:5whr8s9x][/right:5whr8s9x][center:5whr8s9x]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:5whr8s9x]
outbound_links.txt:4012: [4007] => http://www.roleplaygateway.com/rules-t1369.html:pphhdsjc][img:pphhdsjc]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:pphhdsjc][/url:pphhdsjc][/left:pphhdsjc][right:pphhdsjc][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:pphhdsjc][img:pphhdsjc]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:pphhdsjc][/url:pphhdsjc][/right:pphhdsjc][center:pphhdsjc]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:pphhdsjc]
outbound_links.txt:4014: [4009] => http://www.roleplaygateway.com/rules-t1369.html:mbjlflrb][img:mbjlflrb]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:mbjlflrb][/url:mbjlflrb][/left:mbjlflrb][right:mbjlflrb][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:mbjlflrb][img:mbjlflrb]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:mbjlflrb][/url:mbjlflrb][/right:mbjlflrb][center:mbjlflrb]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:mbjlflrb]
outbound_links.txt:4071: [4066] => http://www.roleplaygateway.com/rules-t1369.html:2ij509qa][img:2ij509qa]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2ij509qa][/url:2ij509qa][/left:2ij509qa][right:2ij509qa][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2ij509qa][img:2ij509qa]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2ij509qa][/url:2ij509qa][/right:2ij509qa][center:2ij509qa]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:2ij509qa]
outbound_links.txt:4073: [4068] => http://www.roleplaygateway.com/rules-t1369.html:o121publ][img:o121publ]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:o121publ][/url:o121publ][/left:o121publ][right:o121publ][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:o121publ][img:o121publ]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:o121publ][/url:o121publ][/right:o121publ][center:o121publ]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:o121publ]
outbound_links.txt:4075: [4070] => http://www.roleplaygateway.com/rules-t1369.html:2eqelid6][img:2eqelid6]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2eqelid6][/url:2eqelid6][/left:2eqelid6][right:2eqelid6][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2eqelid6][img:2eqelid6]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2eqelid6][/url:2eqelid6][/right:2eqelid6][center:2eqelid6]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:2eqelid6]
outbound_links.txt:4085: [4080] => http://www.roleplaygateway.com/rules-t1369.html:1lg8qv10][img:1lg8qv10]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1lg8qv10][/url:1lg8qv10][/left:1lg8qv10][right:1lg8qv10][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1lg8qv10][img:1lg8qv10]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1lg8qv10][/url:1lg8qv10][/right:1lg8qv10][center:1lg8qv10]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1lg8qv10]
outbound_links.txt:4088: [4083] => http://www.roleplaygateway.com/rules-t1369.html:197wm3lu][img:197wm3lu]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:197wm3lu][/url:197wm3lu][/left:197wm3lu][right:197wm3lu][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:197wm3lu][img:197wm3lu]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:197wm3lu][/url:197wm3lu][/right:197wm3lu][center:197wm3lu]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:197wm3lu]
outbound_links.txt:4106: [4101] => http://www.roleplaygateway.com/rules-t1369.html:3ukavgke][img:3ukavgke]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3ukavgke][/url:3ukavgke][/left:3ukavgke][right:3ukavgke][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3ukavgke][img:3ukavgke]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3ukavgke][/url:3ukavgke][/right:3ukavgke][center:3ukavgke]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:3ukavgke]
outbound_links.txt:4108: [4103] => http://www.roleplaygateway.com/rules-t1369.html:3rswt5yj][img:3rswt5yj]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3rswt5yj][/url:3rswt5yj][/left:3rswt5yj][right:3rswt5yj][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3rswt5yj][img:3rswt5yj]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3rswt5yj][/url:3rswt5yj][/right:3rswt5yj][center:3rswt5yj]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:3rswt5yj]
outbound_links.txt:4110: [4105] => http://www.roleplaygateway.com/rules-t1369.html:cuyztq9n][img:cuyztq9n]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:cuyztq9n][/url:cuyztq9n][/left:cuyztq9n][right:cuyztq9n][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:cuyztq9n][img:cuyztq9n]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:cuyztq9n][/url:cuyztq9n][/right:cuyztq9n][center:cuyztq9n]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:cuyztq9n]
outbound_links.txt:4112: [4107] => http://www.roleplaygateway.com/rules-t1369.html:2343xg46][img:2343xg46]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2343xg46][/url:2343xg46][/left:2343xg46][right:2343xg46][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2343xg46][img:2343xg46]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2343xg46][/url:2343xg46][/right:2343xg46][center:2343xg46]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:2343xg46]
outbound_links.txt:4205: [4200] => http://www.roleplaygateway.com/rules-t1369.html:1gy2efot][img:1gy2efot]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1gy2efot][/url:1gy2efot][/left:1gy2efot][right:1gy2efot][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1gy2efot][img:1gy2efot]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1gy2efot][/url:1gy2efot][/right:1gy2efot][center:1gy2efot]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1gy2efot]
outbound_links.txt:4207: [4202] => http://www.roleplaygateway.com/rules-t1369.html:355cclop][img:355cclop]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:355cclop][/url:355cclop][/left:355cclop][right:355cclop][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:355cclop][img:355cclop]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:355cclop][/url:355cclop][/right:355cclop][center:355cclop]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:355cclop]
outbound_links.txt:4236: [4231] => http://www.roleplaygateway.com/rules-t1369.html:3418ug3h][img:3418ug3h]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3418ug3h][/url:3418ug3h][/left:3418ug3h][right:3418ug3h][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3418ug3h][img:3418ug3h]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3418ug3h][/url:3418ug3h][/right:3418ug3h][center:3418ug3h]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:3418ug3h]
outbound_links.txt:4238: [4233] => http://www.roleplaygateway.com/rules-t1369.html:1jw96sx9][img:1jw96sx9]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1jw96sx9][/url:1jw96sx9][/left:1jw96sx9][right:1jw96sx9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1jw96sx9][img:1jw96sx9]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1jw96sx9][/url:1jw96sx9][/right:1jw96sx9][center:1jw96sx9]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1jw96sx9]
outbound_links.txt:4312: [4307] => http://www.roleplaygateway.com/rules-t1369.html:1gmfb0c4][img:1gmfb0c4]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1gmfb0c4][/url:1gmfb0c4][/left:1gmfb0c4][right:1gmfb0c4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1gmfb0c4][img:1gmfb0c4]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1gmfb0c4][/url:1gmfb0c4][/right:1gmfb0c4][center:1gmfb0c4]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1gmfb0c4]
outbound_links.txt:4314: [4309] => http://www.roleplaygateway.com/rules-t1369.html:174ffx7k][img:174ffx7k]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:174ffx7k][/url:174ffx7k][/left:174ffx7k][right:174ffx7k][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:174ffx7k][img:174ffx7k]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:174ffx7k][/url:174ffx7k][/right:174ffx7k][center:174ffx7k]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:174ffx7k]
outbound_links.txt:4593: [4588] => http://www.roleplaygateway.com/rules-t1369.html:35837b7p][img:35837b7p]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:35837b7p][/url:35837b7p][/left:35837b7p][right:35837b7p][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:35837b7p][img:35837b7p]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:35837b7p][/url:35837b7p][/right:35837b7p][center:35837b7p]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:35837b7p]
outbound_links.txt:4595: [4590] => http://www.roleplaygateway.com/rules-t1369.html:mgbxiovy][img:mgbxiovy]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:mgbxiovy][/url:mgbxiovy][/left:mgbxiovy][right:mgbxiovy][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:mgbxiovy][img:mgbxiovy]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:mgbxiovy][/url:mgbxiovy][/right:mgbxiovy][center:mgbxiovy]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:mgbxiovy]
outbound_links.txt:4597: [4592] => http://www.roleplaygateway.com/rules-t1369.html:4sf2vv10][img:4sf2vv10]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:4sf2vv10][/url:4sf2vv10][/left:4sf2vv10][right:4sf2vv10][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:4sf2vv10][img:4sf2vv10]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:4sf2vv10][/url:4sf2vv10][/right:4sf2vv10][center:4sf2vv10]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:4sf2vv10]
outbound_links.txt:4601: [4596] => http://www.roleplaygateway.com/rules-t1369.html:18tjvpwz][img:18tjvpwz]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:18tjvpwz][/url:18tjvpwz][/left:18tjvpwz][right:18tjvpwz][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:18tjvpwz][img:18tjvpwz]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:18tjvpwz][/url:18tjvpwz][/right:18tjvpwz][center:18tjvpwz]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:18tjvpwz]
outbound_links.txt:4623: [4618] => http://www.roleplaygateway.com/rules-t1369.html:34swfkff][img:34swfkff]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:34swfkff][/url:34swfkff][/left:34swfkff][right:34swfkff][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:34swfkff][img:34swfkff]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:34swfkff][/url:34swfkff][/right:34swfkff][center:34swfkff]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:34swfkff]
outbound_links.txt:4692: [4687] => http://www.roleplaygateway.com/rules-t1369.html:1n9ao0k0][img:1n9ao0k0]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1n9ao0k0][/url:1n9ao0k0][/left:1n9ao0k0][right:1n9ao0k0][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1n9ao0k0][img:1n9ao0k0]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1n9ao0k0][/url:1n9ao0k0][/right:1n9ao0k0][center:1n9ao0k0]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1n9ao0k0]
outbound_links.txt:4694: [4689] => http://www.roleplaygateway.com/rules-t1369.html:2lw1yuz1][img:2lw1yuz1]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2lw1yuz1][/url:2lw1yuz1][/left:2lw1yuz1][right:2lw1yuz1][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2lw1yuz1][img:2lw1yuz1]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2lw1yuz1][/url:2lw1yuz1][/right:2lw1yuz1][center:2lw1yuz1]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:2lw1yuz1]
outbound_links.txt:4696: [4691] => http://www.roleplaygateway.com/rules-t1369.html:7gw28ni5][img:7gw28ni5]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:7gw28ni5][/url:7gw28ni5][/left:7gw28ni5][right:7gw28ni5][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:7gw28ni5][img:7gw28ni5]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:7gw28ni5][/url:7gw28ni5][/right:7gw28ni5][center:7gw28ni5]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:7gw28ni5]
outbound_links.txt:4721: [4716] => http://www.roleplaygateway.com/rules-t1369.html:mzxfhf4o][img:mzxfhf4o]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:mzxfhf4o][/url:mzxfhf4o][/left:mzxfhf4o][right:mzxfhf4o][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:mzxfhf4o][img:mzxfhf4o]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:mzxfhf4o][/url:mzxfhf4o][/right:mzxfhf4o][center:mzxfhf4o]
outbound_links.txt:4723: [4718] => http://www.roleplaygateway.com/rules-t1369.html:17r24190][img:17r24190]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:17r24190][/url:17r24190][/left:17r24190][right:17r24190][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:17r24190][img:17r24190]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:17r24190][/url:17r24190][/right:17r24190][center:17r24190]Post your text here![/center:17r24190]
outbound_links.txt:4725: [4720] => http://www.roleplaygateway.com/rules-t1369.html][img]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img][/url][/left][right][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html][img]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img][/url][/right][center]
outbound_links.txt:4727: [4722] => http://www.roleplaygateway.com/rules-t1369.html:17r24190][img:17r24190]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:17r24190][/url:17r24190][/left:17r24190][right:17r24190][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:17r24190][img:17r24190]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:17r24190][/url:17r24190][/right:17r24190][center:17r24190]Post your text here![/center:17r24190]
outbound_links.txt:4729: [4724] => http://www.roleplaygateway.com/rules-t1369.html][IMG]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/IMG][/url][/left][right][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html][IMG]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/IMG][/url][/right][center]
outbound_links.txt:4734: [4729] => http://www.roleplaygateway.com/rules-t1369.html:q10awveo][img:q10awveo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:q10awveo][/url:q10awveo][/left:q10awveo][right:q10awveo][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:q10awveo][img:q10awveo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:q10awveo][/url:q10awveo][/right:q10awveo][center:q10awveo]It's so great to have you as part of the site, Yalisha! Take a look at these links to help you get better acquainted with out site and what we're all about![/center:q10awveo]
outbound_links.txt:4779: [4774] => http://www.roleplaygateway.com/rules-t1369.html:5ad4yrhs][img:5ad4yrhs]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:5ad4yrhs][/url:5ad4yrhs][/left:5ad4yrhs][right:5ad4yrhs][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:5ad4yrhs][img:5ad4yrhs]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:5ad4yrhs][/url:5ad4yrhs][/right:5ad4yrhs][center:5ad4yrhs]Oh yeh, Welcome to the site Jazz... Btw.. Um.. What everyone said before me. But, add some epic.[/center:5ad4yrhs]
outbound_links.txt:4781: [4776] => http://www.roleplaygateway.com/rules-t1369.html:3ow3z21b][img:3ow3z21b]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3ow3z21b][/url:3ow3z21b][/left:3ow3z21b][right:3ow3z21b][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3ow3z21b][img:3ow3z21b]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3ow3z21b][/url:3ow3z21b][/right:3ow3z21b][center:3ow3z21b]With as much help as we have floating around here. It should be simple enough to dive right in. Welcome to RPG.[/center:3ow3z21b]
outbound_links.txt:4783: [4778] => http://www.roleplaygateway.com/rules-t1369.html:1ky9uuqd][img:1ky9uuqd]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1ky9uuqd][/url:1ky9uuqd][/left:1ky9uuqd][right:1ky9uuqd][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1ky9uuqd][img:1ky9uuqd]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1ky9uuqd][/url:1ky9uuqd][/right:1ky9uuqd][center:1ky9uuqd]I have these two links you can check out to get started. Other than that, it's exploration on your own. However feel free to PM me if you need any help ^^. Welcome to RPG.[/center:1ky9uuqd]
outbound_links.txt:4785: [4780] => http://www.roleplaygateway.com/rules-t1369.html:16gzmjvj][img:16gzmjvj]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:16gzmjvj][/url:16gzmjvj][/left:16gzmjvj][right:16gzmjvj][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:16gzmjvj][img:16gzmjvj]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:16gzmjvj][/url:16gzmjvj][/right:16gzmjvj][center:16gzmjvj]Welcome to the site. Good luck with the whole universe thing... Chances are you master one, and someone will make another one. Anyways, welcome to RPG![/center:16gzmjvj]
outbound_links.txt:4789: [4784] => http://www.roleplaygateway.com/rules-t1369.html:3vcwptyu][img:3vcwptyu]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3vcwptyu][/url:3vcwptyu][/left:3vcwptyu][right:3vcwptyu][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3vcwptyu][img:3vcwptyu]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3vcwptyu][/url:3vcwptyu][/right:3vcwptyu][center:3vcwptyu]Good news, we beat the snot out of Gaia. Bad news, Gaia really has no standards to roleplaying. Awesome news, We'll help you with whatever you need. Welcome to RPG![/center:3vcwptyu]
outbound_links.txt:4799: [4794] => http://www.roleplaygateway.com/rules-t1369.html:3gbhkbzc][img:3gbhkbzc]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3gbhkbzc][/url:3gbhkbzc][/left:3gbhkbzc][right:3gbhkbzc][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3gbhkbzc][img:3gbhkbzc]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3gbhkbzc][/url:3gbhkbzc][/right:3gbhkbzc][center:3gbhkbzc]
outbound_links.txt:4801: [4796] => http://www.roleplaygateway.com/rules-t1369.html:3etag2f8][img:3etag2f8]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3etag2f8][/url:3etag2f8][/left:3etag2f8][right:3etag2f8][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3etag2f8][img:3etag2f8]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3etag2f8][/url:3etag2f8][/right:3etag2f8][center:3etag2f8]Welcome to RPG. I'm sure we have all wanted to cruise with the epic one, in the Fett Vett... Yes I know I have.[/center:3etag2f8]
outbound_links.txt:4803: [4798] => http://www.roleplaygateway.com/rules-t1369.html:w72wbn76][img:w72wbn76]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:w72wbn76][/url:w72wbn76][/left:w72wbn76][right:w72wbn76][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:w72wbn76][img:w72wbn76]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:w72wbn76][/url:w72wbn76][/right:w72wbn76][center:w72wbn76]
outbound_links.txt:4805: [4800] => http://www.roleplaygateway.com/rules-t1369.html:1spejqvt][img:1spejqvt]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1spejqvt][/url:1spejqvt][/left:1spejqvt][right:1spejqvt][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1spejqvt][img:1spejqvt]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1spejqvt][/url:1spejqvt][/right:1spejqvt][center:1spejqvt]It's not who you want to be. Check over the rules, look over our guidelines. This is a freeform site, meaning we have hundreds of different roleplays going on at one time. So yeh.. I'd start small, read the guides.[/center:1spejqvt]
outbound_links.txt:4807: [4802] => http://www.roleplaygateway.com/rules-t1369.html:enx3q6bc][img:enx3q6bc]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:enx3q6bc][/url:enx3q6bc][/left:enx3q6bc][right:enx3q6bc][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:enx3q6bc][img:enx3q6bc]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:enx3q6bc][/url:enx3q6bc][/right:enx3q6bc][center:enx3q6bc]Not from Gaia? Well, you have just beaten many people on my cool list, about to move on to slightly epic list. Anyways, glad to have yeh here. Welcome to RPG.[/center:enx3q6bc]
outbound_links.txt:4816: [4811] => http://www.roleplaygateway.com/rules-t1369.html:3dniuci8][img:3dniuci8]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3dniuci8][/url:3dniuci8][/left:3dniuci8][right:3dniuci8][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3dniuci8][img:3dniuci8]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3dniuci8][/url:3dniuci8][/right:3dniuci8][center:3dniuci8]Intimate roleplays are not allowed. That's simple enough. So you should find it great here. Lol. Welcome to RPG.[/center:3dniuci8]
outbound_links.txt:4822: [4817] => http://www.roleplaygateway.com/rules-t1369.html:1x27axoo][img:1x27axoo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1x27axoo][/url:1x27axoo][/left:1x27axoo][right:1x27axoo][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1x27axoo][img:1x27axoo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1x27axoo][/url:1x27axoo][/right:1x27axoo][center:1x27axoo]First off, welcome to RPG. Secondly, this is a freeform roleplay website. No need to make just one character. I'd get started by checking the rules and the guide, I've provided the links in this post. There are tons of roleplays going on at once, it's just a matter of finding one you like. Welcome to the site![/center:1x27axoo]
outbound_links.txt:4836: [4831] => http://www.roleplaygateway.com/rules-t1369.html:2ixqccu9][img:2ixqccu9]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2ixqccu9][/url:2ixqccu9][/left:2ixqccu9][right:2ixqccu9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2ixqccu9][img:2ixqccu9]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2ixqccu9][/url:2ixqccu9][/right:2ixqccu9][center:2ixqccu9]Welcome to RPG! While it's great that you've started posting, if you really want to know a good place to go. We have the roleplaying academy. Not only does it help your over all roleplaying; it can also teach you about making your own roleplays and the likes.[/center:2ixqccu9]
outbound_links.txt:4846: [4841] => http://www.roleplaygateway.com/rules-t1369.html:2eregi7s][img:2eregi7s]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2eregi7s][/url:2eregi7s][/left:2eregi7s][right:2eregi7s][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2eregi7s][img:2eregi7s]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2eregi7s][/url:2eregi7s][/right:2eregi7s][center:2eregi7s]
outbound_links.txt:4849: [4844] => http://www.roleplaygateway.com/rules-t1369.html:fulnyqo4][img:fulnyqo4]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:fulnyqo4][/url:fulnyqo4][/left:fulnyqo4][right:fulnyqo4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:fulnyqo4][img:fulnyqo4]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:fulnyqo4][/url:fulnyqo4][/right:fulnyqo4][center:fulnyqo4]
outbound_links.txt:4876: [4871] => http://www.roleplaygateway.com/rules-t1369.html:5jjwsj8q][img:5jjwsj8q]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:5jjwsj8q][/url:5jjwsj8q][/left:5jjwsj8q][right:5jjwsj8q][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:5jjwsj8q][img:5jjwsj8q]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:5jjwsj8q][/url:5jjwsj8q][/right:5jjwsj8q][center:5jjwsj8q]
outbound_links.txt:4882: [4877] => http://www.roleplaygateway.com/rules-t1369.html:p7xcn4yl][img:p7xcn4yl]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:p7xcn4yl][/url:p7xcn4yl][/left:p7xcn4yl][right:p7xcn4yl][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:p7xcn4yl][img:p7xcn4yl]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:p7xcn4yl][/url:p7xcn4yl][/right:p7xcn4yl][center:p7xcn4yl]
outbound_links.txt:4893: [4888] => http://www.roleplaygateway.com/rules-t1369.html:3gi4m5bo][img:3gi4m5bo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3gi4m5bo][/url:3gi4m5bo][/left:3gi4m5bo][right:3gi4m5bo][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3gi4m5bo][img:3gi4m5bo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3gi4m5bo][/url:3gi4m5bo][/right:3gi4m5bo][center:3gi4m5bo]
outbound_links.txt:4895: [4890] => http://www.roleplaygateway.com/rules-t1369.html:20xiq3jq][img:20xiq3jq]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:20xiq3jq][/url:20xiq3jq][/left:20xiq3jq][right:20xiq3jq][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:20xiq3jq][img:20xiq3jq]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:20xiq3jq][/url:20xiq3jq][/right:20xiq3jq][center:20xiq3jq]
outbound_links.txt:4904: [4899] => http://www.roleplaygateway.com/rules-t1369.html:32bp7ext][img:32bp7ext]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:32bp7ext][/url:32bp7ext][/left:32bp7ext][right:32bp7ext][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:32bp7ext][img:32bp7ext]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:32bp7ext][/url:32bp7ext][/right:32bp7ext][center:32bp7ext]Welcome to RPG! If you need any help, just like Dart said, private messages one of us and we will be glad to help out. Quite a few movies yeh got there too ^^ I take it you're a fellow anime fan ^^ Anyways, please be sure to read the rules and the guide as well to help ou get stared around here.[/center:32bp7ext]
outbound_links.txt:4916: [4911] => http://www.roleplaygateway.com/rules-t1369.html:1zebje59][img:1zebje59]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1zebje59][/url:1zebje59][/left:1zebje59][right:1zebje59][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1zebje59][img:1zebje59]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1zebje59][/url:1zebje59][/right:1zebje59][center:1zebje59]
outbound_links.txt:4926: [4921] => http://www.roleplaygateway.com/rules-t1369.html:2r53xaef][img:2r53xaef]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2r53xaef][/url:2r53xaef][/left:2r53xaef][right:2r53xaef][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2r53xaef][img:2r53xaef]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2r53xaef][/url:2r53xaef][/right:2r53xaef][center:2r53xaef]Welcome to RPG! Glad to have you with us ^^. It would be great to have some great RPG con for us all to go to v.v perhaps one day. Lol.. Anyways, please check out the guide and the rules. If you need any help please PM me or any of the staff! Just let us know what you need mang ^^[/center:2r53xaef]
outbound_links.txt:4929: [4924] => http://www.roleplaygateway.com/rules-t1369.html:wl91qgzp][img:wl91qgzp]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:wl91qgzp][/url:wl91qgzp][/left:wl91qgzp][right:wl91qgzp][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:wl91qgzp][img:wl91qgzp]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:wl91qgzp][/url:wl91qgzp][/right:wl91qgzp][center:wl91qgzp]
outbound_links.txt:4934: [4929] => http://www.roleplaygateway.com/rules-t1369.html:osyh2fs6][img:osyh2fs6]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:osyh2fs6][/url:osyh2fs6][/left:osyh2fs6][right:osyh2fs6][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:osyh2fs6][img:osyh2fs6]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:osyh2fs6][/url:osyh2fs6][/right:osyh2fs6][center:osyh2fs6]
outbound_links.txt:4943: [4938] => http://www.roleplaygateway.com/rules-t1369.html:2q79wf6d][img:2q79wf6d]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2q79wf6d][/url:2q79wf6d][/left:2q79wf6d][right:2q79wf6d][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2q79wf6d][img:2q79wf6d]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2q79wf6d][/url:2q79wf6d][/right:2q79wf6d][center:2q79wf6d]
outbound_links.txt:4945: [4940] => http://www.roleplaygateway.com/rules-t1369.html:3qn0l76q][img:3qn0l76q]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3qn0l76q][/url:3qn0l76q][/left:3qn0l76q][right:3qn0l76q][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3qn0l76q][img:3qn0l76q]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3qn0l76q][/url:3qn0l76q][/right:3qn0l76q][center:3qn0l76q]Welcome to RPG ^^. Glad to see yah have already started posting. If you happen to have any questions about anything here, PM me and let me know; or if yah just wanna chat about something. Also, If you havent, check out the rules and the guide for the site ^^.[/center:3qn0l76q]
outbound_links.txt:4947: [4942] => http://www.roleplaygateway.com/rules-t1369.html:1l2qnkpz][img:1l2qnkpz]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1l2qnkpz][/url:1l2qnkpz][/left:1l2qnkpz][right:1l2qnkpz][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1l2qnkpz][img:1l2qnkpz]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1l2qnkpz][/url:1l2qnkpz][/right:1l2qnkpz][center:1l2qnkpz]Awesome, just make sure you post your application for the RPA ^^. We're currently doing a few things to make it more active and the likes. Hope you like it here at RPG. Make sure to read over the rules and the guide. Just PM me if you need help with anything at all ^^.[/center:1l2qnkpz]
outbound_links.txt:4955: [4950] => http://www.roleplaygateway.com/rules-t1369.html:3b7p06rx][img:3b7p06rx]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3b7p06rx][/url:3b7p06rx][/left:3b7p06rx][right:3b7p06rx][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3b7p06rx][img:3b7p06rx]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3b7p06rx][/url:3b7p06rx][/right:3b7p06rx][center:3b7p06rx]
outbound_links.txt:4961: [4956] => http://www.roleplaygateway.com/rules-t1369.html:tm5r4nm2][img:tm5r4nm2]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:tm5r4nm2][/url:tm5r4nm2][/left:tm5r4nm2][right:tm5r4nm2][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:tm5r4nm2][img:tm5r4nm2]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:tm5r4nm2][/url:tm5r4nm2][/right:tm5r4nm2][center:tm5r4nm2]Welcome to RPG. Hope you find the RPA to your liking, and to much competition ^^. Make sure to check out the rules and the likes before really getting to posting. If you need any help please PM me. I'm nearly always on ^^.[/center:tm5r4nm2]
outbound_links.txt:4982: [4977] => http://www.roleplaygateway.com/rules-t1369.html:29n8xm7u][img:29n8xm7u]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:29n8xm7u][/url:29n8xm7u][/left:29n8xm7u][right:29n8xm7u][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:29n8xm7u][img:29n8xm7u]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:29n8xm7u][/url:29n8xm7u][/right:29n8xm7u][center:29n8xm7u]Quite at hard worker <<; All of that. Welcome to RPG. PM me if you need help of any sort. Please be sure to check out the rules and the guide as well. We are glad to have yah here ^^.[/center:29n8xm7u]
outbound_links.txt:4992: [4987] => http://www.roleplaygateway.com/rules-t1369.html:bkmcvcyt][img:bkmcvcyt]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:bkmcvcyt][/url:bkmcvcyt][/left:bkmcvcyt][right:bkmcvcyt][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:bkmcvcyt][img:bkmcvcyt]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:bkmcvcyt][/url:bkmcvcyt][/right:bkmcvcyt][center:bkmcvcyt]Welcome to RPG. Hope yeh like it here ^^. If you need any help just PM me! Please check out the rules and the guide before you really delve into the site.[/center:bkmcvcyt]
outbound_links.txt:5003: [4998] => http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html[/url:3hnlc5zn]
outbound_links.txt:5010: [5005] => http://www.roleplaygateway.com/rules-t1369.html:3jl7dp2c][img:3jl7dp2c]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3jl7dp2c][/url:3jl7dp2c][/left:3jl7dp2c][right:3jl7dp2c][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3jl7dp2c][img:3jl7dp2c]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3jl7dp2c][/url:3jl7dp2c][/right:3jl7dp2c][center:3jl7dp2c]
outbound_links.txt:5022: [5017] => http://www.roleplaygateway.com/rules-t1369.html:uia4r7zn][img:uia4r7zn]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:uia4r7zn][/url:uia4r7zn][/left:uia4r7zn][right:uia4r7zn][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:uia4r7zn][img:uia4r7zn]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:uia4r7zn][/url:uia4r7zn][/right:uia4r7zn][center:uia4r7zn]
outbound_links.txt:5029: [5024] => http://www.roleplaygateway.com/rules-t1369.html:2xrpwv2v][img:2xrpwv2v]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2xrpwv2v][/url:2xrpwv2v][/left:2xrpwv2v][right:2xrpwv2v][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2xrpwv2v][img:2xrpwv2v]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2xrpwv2v][/url:2xrpwv2v][/right:2xrpwv2v][center:2xrpwv2v]
outbound_links.txt:5036: [5031] => http://www.roleplaygateway.com/rules-t1369.html:1lgp129p][img:1lgp129p]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1lgp129p][/url:1lgp129p][/left:1lgp129p][right:1lgp129p][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1lgp129p][img:1lgp129p]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1lgp129p][/url:1lgp129p][/right:1lgp129p][center:1lgp129p]
outbound_links.txt:5039: [5034] => http://www.roleplaygateway.com/rules-t1369.html:170pl7u5][img:170pl7u5]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:170pl7u5][/url:170pl7u5][/left:170pl7u5][right:170pl7u5][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:170pl7u5][img:170pl7u5]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:170pl7u5][/url:170pl7u5][/right:170pl7u5][center:170pl7u5]
outbound_links.txt:5053: [5048] => http://www.roleplaygateway.com/rules-t1369.html:1t9lq7c2][img:1t9lq7c2]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1t9lq7c2][/url:1t9lq7c2][/left:1t9lq7c2][right:1t9lq7c2][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1t9lq7c2][img:1t9lq7c2]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1t9lq7c2][/url:1t9lq7c2][/right:1t9lq7c2][center:1t9lq7c2]
outbound_links.txt:5055: [5050] => http://www.roleplaygateway.com/rules-t1369.html:1nvqspaz][img:1nvqspaz]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1nvqspaz][/url:1nvqspaz][/left:1nvqspaz][right:1nvqspaz][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1nvqspaz][img:1nvqspaz]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1nvqspaz][/url:1nvqspaz][/right:1nvqspaz][center:1nvqspaz]Welcome to RPG ^^. I am thinking of running some sort of warhammer 40kish roleplay soon, I dunno though. Anyways, if you need help of any sort, feel free to PM me. Make sure to check out the rules and guide as well ^^.[/center:1nvqspaz]
outbound_links.txt:5057: [5052] => http://www.roleplaygateway.com/rules-t1369.html:19xho79k][img:19xho79k]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:19xho79k][/url:19xho79k][/left:19xho79k][right:19xho79k][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:19xho79k][img:19xho79k]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:19xho79k][/url:19xho79k][/right:19xho79k][center:19xho79k]
outbound_links.txt:5059: [5054] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3flnunil]the RPGateway rules[/url:3flnunil] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3flnunil]RPGateway Manual[/url:3flnunil]
outbound_links.txt:5071: [5066] => http://www.roleplaygateway.com/rules-t1369.html:y6nvzc9m][img:y6nvzc9m]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:y6nvzc9m][/url:y6nvzc9m][/left:y6nvzc9m][right:y6nvzc9m][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:y6nvzc9m][img:y6nvzc9m]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:y6nvzc9m][/url:y6nvzc9m][/right:y6nvzc9m][center:y6nvzc9m]Meh, we like all sorts of roleplaying styles here ^^. The more the better. Either way, welcome to RPG. Please read over the rules and the guide though. If you need help with anything at all, or you just want someone to chat with, feel free to private message me ^^. I hope you like it here?[/center:y6nvzc9m]
outbound_links.txt:5074: [5069] => http://www.roleplaygateway.com/rules-t1369.html:3dwe69zd][img:3dwe69zd]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3dwe69zd][/url:3dwe69zd][/left:3dwe69zd][right:3dwe69zd][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3dwe69zd][img:3dwe69zd]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3dwe69zd][/url:3dwe69zd][/right:3dwe69zd][center:3dwe69zd]
outbound_links.txt:5090: [5085] => http://www.roleplaygateway.com/rules-t1369.html:42x0n6y4][img:42x0n6y4]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:42x0n6y4][/url:42x0n6y4][/left:42x0n6y4][right:42x0n6y4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:42x0n6y4][img:42x0n6y4]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:42x0n6y4][/url:42x0n6y4][/right:42x0n6y4][center:42x0n6y4]
outbound_links.txt:5096: [5091] => http://www.roleplaygateway.com/rules-t1369.html:1p8f9j7l][img:1p8f9j7l]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1p8f9j7l][/url:1p8f9j7l][/left:1p8f9j7l][right:1p8f9j7l][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1p8f9j7l][img:1p8f9j7l]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1p8f9j7l][/url:1p8f9j7l][/right:1p8f9j7l][center:1p8f9j7l]
outbound_links.txt:5104: [5099] => http://www.roleplaygateway.com/rules-t1369.html:2u5f08jm][img:2u5f08jm]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2u5f08jm][/url:2u5f08jm][/left:2u5f08jm][right:2u5f08jm][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2u5f08jm][img:2u5f08jm]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2u5f08jm][/url:2u5f08jm][/right:2u5f08jm][center:2u5f08jm]
outbound_links.txt:5106: [5101] => http://www.roleplaygateway.com/rules-t1369.html:5r79fi8j][img:5r79fi8j]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:5r79fi8j][/url:5r79fi8j][/left:5r79fi8j][right:5r79fi8j][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:5r79fi8j][img:5r79fi8j]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:5r79fi8j][/url:5r79fi8j][/right:5r79fi8j][center:5r79fi8j]
outbound_links.txt:5112: [5107] => http://www.roleplaygateway.com/rules-t1369.html:24yeu1cv][img:24yeu1cv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:24yeu1cv][/url:24yeu1cv][/left:24yeu1cv][right:24yeu1cv][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:24yeu1cv][img:24yeu1cv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:24yeu1cv][/url:24yeu1cv][/right:24yeu1cv][center:24yeu1cv]
outbound_links.txt:5114: [5109] => http://www.roleplaygateway.com/rules-t1369.html:hl96q28r][img:hl96q28r]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:hl96q28r][/url:hl96q28r][/left:hl96q28r][right:hl96q28r][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:hl96q28r][img:hl96q28r]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:hl96q28r][/url:hl96q28r][/right:hl96q28r][center:hl96q28r]
outbound_links.txt:5126: [5121] => http://www.roleplaygateway.com/rules-t1369.html:2rqt0flz][img:2rqt0flz]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2rqt0flz][/url:2rqt0flz][/left:2rqt0flz][right:2rqt0flz][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2rqt0flz][img:2rqt0flz]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2rqt0flz][/url:2rqt0flz][/right:2rqt0flz][center:2rqt0flz]
outbound_links.txt:5128: [5123] => http://www.roleplaygateway.com/rules-t1369.html:1669rh0l][img:1669rh0l]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1669rh0l][/url:1669rh0l][/left:1669rh0l][right:1669rh0l][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1669rh0l][img:1669rh0l]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1669rh0l][/url:1669rh0l][/right:1669rh0l][center:1669rh0l]
outbound_links.txt:5134: [5129] => http://www.roleplaygateway.com/rules-t1369.html:3c81iygd][img:3c81iygd]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3c81iygd][/url:3c81iygd][/left:3c81iygd][right:3c81iygd][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3c81iygd][img:3c81iygd]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3c81iygd][/url:3c81iygd][/right:3c81iygd][center:3c81iygd]
outbound_links.txt:5138: [5133] => http://www.roleplaygateway.com/rules-t1369.html:200qe2d4][img:200qe2d4]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:200qe2d4][/url:200qe2d4][/left:200qe2d4][right:200qe2d4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:200qe2d4][img:200qe2d4]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:200qe2d4][/url:200qe2d4][/right:200qe2d4][center:200qe2d4]
outbound_links.txt:5152: [5147] => http://www.roleplaygateway.com/rules-t1369.html:2bgaiskw][img:2bgaiskw]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2bgaiskw][/url:2bgaiskw][/left:2bgaiskw][right:2bgaiskw][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2bgaiskw][img:2bgaiskw]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2bgaiskw][/url:2bgaiskw][/right:2bgaiskw][center:2bgaiskw]
outbound_links.txt:5154: [5149] => http://www.roleplaygateway.com/rules-t1369.html:178j3fsv][img:178j3fsv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:178j3fsv][/url:178j3fsv][/left:178j3fsv][right:178j3fsv][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:178j3fsv][img:178j3fsv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:178j3fsv][/url:178j3fsv][/right:178j3fsv][center:178j3fsv]Wecome to The RoleplayGateway! If you have any questions feel free to PM me! You can PM me with wuestions, comments, concerns, or just to chat! You can PM anyone with a blue name with troubles and they will help you with whatever you need! Enjoy your stay![/center:178j3fsv]
outbound_links.txt:5163: [5158] => http://www.roleplaygateway.com/rules-t1369.html:1zg2hbv3][img:1zg2hbv3]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1zg2hbv3][/url:1zg2hbv3][/left:1zg2hbv3][right:1zg2hbv3][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1zg2hbv3][img:1zg2hbv3]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1zg2hbv3][/url:1zg2hbv3][/right:1zg2hbv3][center:1zg2hbv3]
outbound_links.txt:5166: [5161] => http://www.roleplaygateway.com/rules-t1369.html:t0roh57l][img:t0roh57l]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:t0roh57l][/url:t0roh57l][/left:t0roh57l][right:t0roh57l][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:t0roh57l][img:t0roh57l]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:t0roh57l][/url:t0roh57l][/right:t0roh57l][center:t0roh57l]
outbound_links.txt:5169: [5164] => http://www.roleplaygateway.com/rules-t1369.html:2arabqjt][img:2arabqjt]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2arabqjt][/url:2arabqjt][/left:2arabqjt][right:2arabqjt][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2arabqjt][img:2arabqjt]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2arabqjt][/url:2arabqjt][/right:2arabqjt][center:2arabqjt]
outbound_links.txt:5189: [5184] => http://www.roleplaygateway.com/rules-t1369.html:njnj7z9o][img:njnj7z9o]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:njnj7z9o][/url:njnj7z9o][/left:njnj7z9o][right:njnj7z9o][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:njnj7z9o][img:njnj7z9o]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:njnj7z9o][/url:njnj7z9o][/right:njnj7z9o][center:njnj7z9o]
outbound_links.txt:5216: [5211] => http://www.roleplaygateway.com/rules-t1369.html:1tzacmeo][img:1tzacmeo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1tzacmeo][/url:1tzacmeo][/left:1tzacmeo][right:1tzacmeo][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1tzacmeo][img:1tzacmeo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1tzacmeo][/url:1tzacmeo][/right:1tzacmeo][center:1tzacmeo]
outbound_links.txt:5218: [5213] => http://www.roleplaygateway.com/rules-t1369.html:1h2vvovd][img:1h2vvovd]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1h2vvovd][/url:1h2vvovd][/left:1h2vvovd][right:1h2vvovd][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1h2vvovd][img:1h2vvovd]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1h2vvovd][/url:1h2vvovd][/right:1h2vvovd][center:1h2vvovd]
outbound_links.txt:5220: [5215] => http://www.roleplaygateway.com/rules-t1369.html:7aoj27l4][img:7aoj27l4]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:7aoj27l4][/url:7aoj27l4][/left:7aoj27l4][right:7aoj27l4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:7aoj27l4][img:7aoj27l4]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:7aoj27l4][/url:7aoj27l4][/right:7aoj27l4][center:7aoj27l4]
outbound_links.txt:5222: [5217] => http://www.roleplaygateway.com/rules-t1369.html:r6jn7s2d][img:r6jn7s2d]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:r6jn7s2d][/url:r6jn7s2d][/left:r6jn7s2d][right:r6jn7s2d][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:r6jn7s2d][img:r6jn7s2d]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:r6jn7s2d][/url:r6jn7s2d][/right:r6jn7s2d][center:r6jn7s2d]
outbound_links.txt:5224: [5219] => http://www.roleplaygateway.com/rules-t1369.html:2ijb2c4p][img:2ijb2c4p]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2ijb2c4p][/url:2ijb2c4p][/left:2ijb2c4p][right:2ijb2c4p][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2ijb2c4p][img:2ijb2c4p]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2ijb2c4p][/url:2ijb2c4p][/right:2ijb2c4p][center:2ijb2c4p]
outbound_links.txt:5264: [5259] => http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3427yds8]user manual[/url:3427yds8] and our [url=http://www.roleplaygateway.com/rules-t1369.html:3427yds8]rules[/url:3427yds8]
outbound_links.txt:5267: [5262] => http://www.roleplaygateway.com/rules-t1369.html:lr5uhw5y]rules[/url:lr5uhw5y] and [url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:lr5uhw5y]user manual.[/url:lr5uhw5y]
outbound_links.txt:5277: [5272] => http://www.roleplaygateway.com/rules-t1369.html:192lsfnn][img:192lsfnn]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:192lsfnn][/url:192lsfnn][/left:192lsfnn][right:192lsfnn][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:192lsfnn][img:192lsfnn]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:192lsfnn][/url:192lsfnn][/right:192lsfnn][center:192lsfnn]
outbound_links.txt:5279: [5274] => http://www.roleplaygateway.com/rules-t1369.html:s4bxvgj9][img:s4bxvgj9]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:s4bxvgj9][/url:s4bxvgj9][/left:s4bxvgj9][right:s4bxvgj9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:s4bxvgj9][img:s4bxvgj9]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:s4bxvgj9][/url:s4bxvgj9][/right:s4bxvgj9][center:s4bxvgj9]
outbound_links.txt:5313: [5308] => http://www.roleplaygateway.com/rules-t1369.html:m0iteufj]rules[/url:m0iteufj] and [url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:m0iteufj]user manual.[/url:m0iteufj]
outbound_links.txt:5315: [5310] => http://www.roleplaygateway.com/rules-t1369.html:5junpf7v]our rules[/url:5junpf7v] and the [url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:5junpf7v]user manual.[/url:5junpf7v]
outbound_links.txt:5317: [5312] => http://www.roleplaygateway.com/rules-t1369.html:2abefb0y][img:2abefb0y]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2abefb0y][/url:2abefb0y][/left:2abefb0y][right:2abefb0y][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2abefb0y][img:2abefb0y]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2abefb0y][/url:2abefb0y][/right:2abefb0y][center:2abefb0y]
outbound_links.txt:5319: [5314] => http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:v74lg4o6]user manual[/url:v74lg4o6] and our [url=http://www.roleplaygateway.com/rules-t1369.html:v74lg4o6]rules.[/url:v74lg4o6]
outbound_links.txt:5321: [5316] => http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1a8z1a4v]user manual[/url:1a8z1a4v] and our [url=http://www.roleplaygateway.com/rules-t1369.html:1a8z1a4v]rules.[/url:1a8z1a4v]
outbound_links.txt:5325: [5320] => http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3dop3jdm]user manual[/url:3dop3jdm] and [url=http://www.roleplaygateway.com/rules-t1369.html:3dop3jdm]rules.[/url:3dop3jdm]
outbound_links.txt:5350: [5345] => http://p-images.veoh.com/image.out?imageId=user-Anime-Pirate20.jpg&version=4:24pfue8s](Minus the Eyepatch of course)[/url:24pfue8s]
outbound_links.txt:5369: [5364] => http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2eelyrr1]user manual[/url:2eelyrr1] and our [url=http://www.roleplaygateway.com/rules-t1369.html:2eelyrr1]rules.[/url:2eelyrr1]
outbound_links.txt:5371: [5366] => http://www.roleplaygateway.com/rules-t1369.html:giwtxbqm]rules[/url:giwtxbqm] and the [url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:giwtxbqm]user manual.[/url:giwtxbqm]
outbound_links.txt:5373: [5368] => http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:wkq8opik]user manual,[/url:wkq8opik] [url=http://www.roleplaygateway.com/rules-t1369.html:wkq8opik]our rules,[/url:wkq8opik]
outbound_links.txt:5419: [5414] => http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:16d92m6y]user manual[/url:16d92m6y]
outbound_links.txt:5449: [5444] => http://www.roleplaygateway.com/rules-t1369.html:3rf6054y]the rules[/url:3rf6054y] and the [url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3rf6054y]user manual.[/url:3rf6054y]
outbound_links.txt:5506: [5501] => http://www.roleplaygateway.com/rules-t1369.html:2i4zmfp9][img:2i4zmfp9]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2i4zmfp9][/url:2i4zmfp9][/left:2i4zmfp9][right:2i4zmfp9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2i4zmfp9][img:2i4zmfp9]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2i4zmfp9][/url:2i4zmfp9][/right:2i4zmfp9][center:2i4zmfp9][color=#0000FF:2i4zmfp9]
outbound_links.txt:5513: [5508] => http://www.roleplaygateway.com/rules-t1369.html:1pfakxbn][img:1pfakxbn]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1pfakxbn][/url:1pfakxbn][/left:1pfakxbn][right:1pfakxbn][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1pfakxbn][img:1pfakxbn]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1pfakxbn][/url:1pfakxbn][/right:1pfakxbn][center:1pfakxbn][color=#0000FF:1pfakxbn]
outbound_links.txt:5526: [5521] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:30ateuor]user manual.[/url:30ateuor]
outbound_links.txt:5549: [5544] => http://www.roleplaygateway.com/rules-t1369.html:12894zx1][img:12894zx1]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:12894zx1][/url:12894zx1][/left:12894zx1][right:12894zx1][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:12894zx1][img:12894zx1]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:12894zx1][/url:12894zx1][/right:12894zx1][center:12894zx1][color=#0000FF:12894zx1]
outbound_links.txt:5553: [5548] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3cs6lkwj]rules[/url:3cs6lkwj] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3cs6lkwj]user manual.[/url:3cs6lkwj]
outbound_links.txt:5555: [5550] => http://www.roleplaygateway.com/rules-t1369.html:3ni08sbk][img:3ni08sbk]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3ni08sbk][/url:3ni08sbk][/left:3ni08sbk][right:3ni08sbk][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3ni08sbk][img:3ni08sbk]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3ni08sbk][/url:3ni08sbk][/right:3ni08sbk][center:3ni08sbk][color=#0000FF:3ni08sbk]
outbound_links.txt:5560: [5555] => http://www.roleplaygateway.com/rules-t1369.html:4x02fl01][img:4x02fl01]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:4x02fl01][/url:4x02fl01][/left:4x02fl01][right:4x02fl01][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:4x02fl01][img:4x02fl01]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:4x02fl01][/url:4x02fl01][/right:4x02fl01][center:4x02fl01][color=#0000FF:4x02fl01]
outbound_links.txt:5583: [5578] => http://www.roleplaygateway.com/rules-t1369.html:i57vd5gf][img:i57vd5gf]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:i57vd5gf][/url:i57vd5gf][/left:i57vd5gf][right:i57vd5gf][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:i57vd5gf][img:i57vd5gf]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:i57vd5gf][/url:i57vd5gf][/right:i57vd5gf][center:i57vd5gf][color=#0000FF:i57vd5gf]
outbound_links.txt:5629: [5624] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1955ss5j]rules[/url:1955ss5j] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1955ss5j]user manual.[/url:1955ss5j]
outbound_links.txt:5631: [5626] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:170q52z0]user manual[/url:170q52z0] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:170q52z0]rules.[/url:170q52z0]
outbound_links.txt:5689: [5684] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:tu0l555a]the user manual[/url:tu0l555a] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:tu0l555a]rules[/url:tu0l555a]
outbound_links.txt:5702: [5697] => http://www.roleplaygateway.com/rules-t1369.html:329kl6fr][img:329kl6fr]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:329kl6fr][/url:329kl6fr][/left:329kl6fr][right:329kl6fr][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:329kl6fr][img:329kl6fr]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:329kl6fr][/url:329kl6fr][/right:329kl6fr][center:329kl6fr][color=#0000FF:329kl6fr]
outbound_links.txt:5710: [5705] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2esf9k82]user manual[/url:2esf9k82] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2esf9k82]rules.[/url:2esf9k82]
outbound_links.txt:5731: [5726] => http://www.roleplaygateway.com/rules-t1369.html:30foyh93][img:30foyh93]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:30foyh93][/url:30foyh93][/left:30foyh93][right:30foyh93][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:30foyh93][img:30foyh93]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:30foyh93][/url:30foyh93][/right:30foyh93][center:30foyh93][color=#0000FF:30foyh93]
outbound_links.txt:5740: [5735] => http://www.roleplaygateway.com/rules-t1369.html:p5qfs66h][img:p5qfs66h]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:p5qfs66h][/url:p5qfs66h][/left:p5qfs66h][right:p5qfs66h][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:p5qfs66h][img:p5qfs66h]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:p5qfs66h][/url:p5qfs66h][/right:p5qfs66h][center:p5qfs66h][color=#0000FF:p5qfs66h]
outbound_links.txt:5750: [5745] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:wp1k2483]RPG User Manual[/url:wp1k2483]. Or if you feel that your 1337 roleplayin' skillz could do with a little tuning up, why not pop by the [url=http://www.roleplaygateway.com/role-play-academy-f125.html:wp1k2483]RP Academy[/url:wp1k2483]
outbound_links.txt:5851: [5846] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2pz5jbni]the user manual[/url:2pz5jbni] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2pz5jbni]rules.[/url:2pz5jbni]
outbound_links.txt:5853: [5848] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:348zeh1b]rules[/url:348zeh1b] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:348zeh1b]the user manual.[/url:348zeh1b]
outbound_links.txt:5855: [5850] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2g1b95ym]user manual[/url:2g1b95ym] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2g1b95ym]rules.[/url:2g1b95ym]
outbound_links.txt:5861: [5856] => http://www.roleplaygateway.com/rules-t1369.html:7x04sutp][img:7x04sutp]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:7x04sutp][/url:7x04sutp][/left:7x04sutp][right:7x04sutp][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:7x04sutp][img:7x04sutp]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:7x04sutp][/url:7x04sutp][/right:7x04sutp][center:7x04sutp]I'm so happy that you found your way here! Let me know if there's anything that I can help you with, or if you wanna RP sometime. Have fun!!!![/center:7x04sutp]
outbound_links.txt:5885: [5880] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:gk8xanfe]rules[/url:gk8xanfe] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:gk8xanfe]user manual.[/url:gk8xanfe]
outbound_links.txt:5904: [5899] => http://www.roleplaygateway.com/rules-t1369.html:3uu5fmq9][img:3uu5fmq9]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3uu5fmq9][/url:3uu5fmq9][/left:3uu5fmq9][right:3uu5fmq9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3uu5fmq9][img:3uu5fmq9]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3uu5fmq9][/url:3uu5fmq9][/right:3uu5fmq9][center:3uu5fmq9]WELCOME TO THE GATEWAY!!![/center:3uu5fmq9]
outbound_links.txt:5985: [5980] => http://www.roleplaygateway.com/rules-t1369.html:ejiobcu7][img:ejiobcu7]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:ejiobcu7][/url:ejiobcu7][/left:ejiobcu7][right:ejiobcu7][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:ejiobcu7][img:ejiobcu7]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:ejiobcu7][/url:ejiobcu7][/right:ejiobcu7][center:ejiobcu7][color=#0000FF:ejiobcu7]
outbound_links.txt:6010: [6005] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3ptq7bfb]the rulebook[/url:3ptq7bfb] and our [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3ptq7bfb]user manual.[/url:3ptq7bfb]
outbound_links.txt:6133: [6128] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3gv10qfk]the rules[/url:3gv10qfk] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3gv10qfk]user manual.[/url:3gv10qfk]
outbound_links.txt:6138: [6133] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1iu82s2z]user manual[/url:1iu82s2z] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1iu82s2z]rules.[/url:1iu82s2z]
outbound_links.txt:6145: [6140] => http://www.roleplaygateway.com/rules-t1369.html:36ko8dxj][img:36ko8dxj]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:36ko8dxj][/url:36ko8dxj][/left:36ko8dxj][right:36ko8dxj][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:36ko8dxj][img:36ko8dxj]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:36ko8dxj][/url:36ko8dxj][/right:36ko8dxj][center:36ko8dxj][color=#0000FF:36ko8dxj]
outbound_links.txt:6214: [6209] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2t5e3f6l]user manual[/url:2t5e3f6l] Also, be sure to read [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2t5e3f6l]the rules.[/url:2t5e3f6l]
outbound_links.txt:6220: [6215] => http://www.roleplaygateway.com/rules-t1369.html:2601jz0k][img:2601jz0k]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2601jz0k][/url:2601jz0k][/left:2601jz0k][right:2601jz0k][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2601jz0k][img:2601jz0k]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2601jz0k][/url:2601jz0k][/right:2601jz0k][center:2601jz0k][color=#0000FF:2601jz0k]
outbound_links.txt:6222: [6217] => http://www.roleplaygateway.com/rules-t1369.html:zp3rxwu2][img:zp3rxwu2]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:zp3rxwu2][/url:zp3rxwu2][/left:zp3rxwu2][right:zp3rxwu2][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:zp3rxwu2][img:zp3rxwu2]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:zp3rxwu2][/url:zp3rxwu2][/right:zp3rxwu2][center:zp3rxwu2][color=#0000FF:zp3rxwu2]
outbound_links.txt:6240: [6235] => http://www.roleplaygateway.com/rules-t1369.html:738f6erq][img:738f6erq]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:738f6erq][/url:738f6erq][/left:738f6erq][right:738f6erq][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:738f6erq][img:738f6erq]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:738f6erq][/url:738f6erq][/right:738f6erq][center:738f6erq][color=#0000FF:738f6erq]
outbound_links.txt:6243: [6238] => http://www.roleplaygateway.com/rules-t1369.html:2osge21e][img:2osge21e]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2osge21e][/url:2osge21e][/left:2osge21e][right:2osge21e][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2osge21e][img:2osge21e]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2osge21e][/url:2osge21e][/right:2osge21e][center:2osge21e][color=#0000FF:2osge21e]
outbound_links.txt:6259: [6254] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:oi1ob1uw]the rules[/url:oi1ob1uw] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:oi1ob1uw]user manual.[/url:oi1ob1uw]
outbound_links.txt:6280: [6275] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:mq6sm1of]the rules[/url:mq6sm1of] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:mq6sm1of]user manual.[/url:mq6sm1of]
outbound_links.txt:6306: [6301] => http://www.roleplaygateway.com/rules-t1369.html:kwsxnews][img:kwsxnews]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:kwsxnews][/url:kwsxnews][/left:kwsxnews][right:kwsxnews][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:kwsxnews][img:kwsxnews]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:kwsxnews][/url:kwsxnews][/right:kwsxnews][center:kwsxnews][color=#0000FF:kwsxnews]
outbound_links.txt:6326: [6321] => http://www.roleplaygateway.com/rules-t1369.html:1sh2orwy][img:1sh2orwy]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1sh2orwy][/url:1sh2orwy][/left:1sh2orwy][right:1sh2orwy][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1sh2orwy][img:1sh2orwy]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1sh2orwy][/url:1sh2orwy][/right:1sh2orwy][center:1sh2orwy][color=#0000FF:1sh2orwy]
outbound_links.txt:6447: [6442] => http://www.roleplaygateway.com/rules-t1369.html:2mpmma3k][img:2mpmma3k]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2mpmma3k][/url:2mpmma3k][/left:2mpmma3k][right:2mpmma3k][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2mpmma3k][img:2mpmma3k]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2mpmma3k][/url:2mpmma3k][/right:2mpmma3k][center:2mpmma3k]Hey there! Nice of you to join us! If you have any questions, let us know... We're more than happy to help you out with anything and everything. While you're around, make sure you check out our [url=http://www.roleplaygateway.com/chat:2mpmma3k]chat[/url:2mpmma3k] if you have time.[/center:2mpmma3k]
outbound_links.txt:6633: [6628] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:l1ja84v7]the rules[/url:l1ja84v7] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:l1ja84v7]user manual.[/url:l1ja84v7]
outbound_links.txt:6690: [6685] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3q8b1m77]user manual[/url:3q8b1m77] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3q8b1m77]rules.[/url:3q8b1m77] If you have any questions about anything to do with this site (including, but not limited to, ware teh rp @), feel free to ask here, in the [url=http://www.roleplaygateway.com/help-f11.html:3q8b1m77]help forum[/url:3q8b1m77]
outbound_links.txt:6691: [6686] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:13avoh2n]user manual[/url:13avoh2n] or the [url=http://www.roleplaygateway.com/help-f11.html:13avoh2n]help forum[/url:13avoh2n]
outbound_links.txt:6693: [6688] => http://www.roleplaygateway.com/help-f11.html:3luj0v1m]help forum[/url:3luj0v1m] and/or [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3luj0v1m]user manual.[/url:3luj0v1m]
outbound_links.txt:6703: [6698] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:157jk1b2]user manual[/url:157jk1b2] or the [url=http://www.roleplaygateway.com/help-f11.html:157jk1b2]help forum[/url:157jk1b2]
outbound_links.txt:6723: [6718] => http://www.roleplaygateway.com/main-lobby-f1.html:36nvl581]the rules.[/url:36nvl581] You may also want to check out [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:36nvl581]the user manual.[/url:36nvl581]
outbound_links.txt:6764: [6759] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:28b2a8ps]the rules[/url:28b2a8ps] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:28b2a8ps]user manual.[/url:28b2a8ps]
outbound_links.txt:6817: [6812] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3j5fmwag]the user manual[/url:3j5fmwag] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3j5fmwag]rules.[/url:3j5fmwag]
outbound_links.txt:6819: [6814] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html[/url:uoog3b32] rules and perhaps the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:uoog3b32]user manual.[/url:uoog3b32]
outbound_links.txt:6821: [6816] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3i5ddzxw]the user manual[/url:3i5ddzxw], and will definately want to read our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3i5ddzxw]rules.[/url:3i5ddzxw]
outbound_links.txt:6826: [6821] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2kxbib64]the rules[/url:2kxbib64] and perhaps the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2kxbib64]user manual.[/url:2kxbib64] If you have any questions feel free to ask here, in the [url=http://www.roleplaygateway.com/help-f11.html:2kxbib64]help forum[/url:2kxbib64]
outbound_links.txt:6828: [6823] => http://www.roleplaygateway.com/rules-t1369.html:gawvmjzp][img:gawvmjzp]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:gawvmjzp][/url:gawvmjzp][/left:gawvmjzp][right:gawvmjzp][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:gawvmjzp][img:gawvmjzp]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:gawvmjzp][/url:gawvmjzp][/right:gawvmjzp][center:gawvmjzp][color=#0000FF:gawvmjzp]
outbound_links.txt:6831: [6826] => http://www.roleplaygateway.com/rules-t1369.html:2gg0u2vk][img:2gg0u2vk]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2gg0u2vk][/url:2gg0u2vk][/left:2gg0u2vk][right:2gg0u2vk][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2gg0u2vk][img:2gg0u2vk]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2gg0u2vk][/url:2gg0u2vk][/right:2gg0u2vk][center:2gg0u2vk][color=#0000FF:2gg0u2vk]
outbound_links.txt:6864: [6859] => http://www.roleplaygateway.com/rules-t1369.html:1nr85bl1][img:1nr85bl1]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1nr85bl1][/url:1nr85bl1][/left:1nr85bl1][right:1nr85bl1][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1nr85bl1][img:1nr85bl1]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1nr85bl1][/url:1nr85bl1][/right:1nr85bl1][center:1nr85bl1]
outbound_links.txt:6889: [6884] => http://www.roleplaygateway.com/rules-t1369.html:3bmbrdjw][img:3bmbrdjw]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3bmbrdjw][/url:3bmbrdjw][/left:3bmbrdjw][right:3bmbrdjw][url=http://www.roleplaygateway.com/the-RPG-user-manual-all-users-must-read-t7.html:3bmbrdjw][img:3bmbrdjw]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3bmbrdjw][/url:3bmbrdjw][/right:3bmbrdjw][center:3bmbrdjw]
outbound_links.txt:6993: [6988] => http://www.roleplaygateway.com/rules-t1369.html:3bpbohjr][img:3bpbohjr]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3bpbohjr][/url:3bpbohjr][/left:3bpbohjr][right:3bpbohjr][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3bpbohjr][img:3bpbohjr]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3bpbohjr][/url:3bpbohjr][/right:3bpbohjr][center:3bpbohjr]Hey there Cass!! It's great to see that you are giving us a chance! There are a few things that we ask that you do... First, click the rules button in my post to read what we have laid down as ground rules... Also, check out the guide to RPGW, which will give you a general idea what we're about. A lot of that will be un-needed information, since you already know hwo to put a post together... [quite beautifully done, by the way...]
outbound_links.txt:6995: [6990] => http://www.roleplaygateway.com/rules-t1369.html:ct5225i4][img:ct5225i4]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:ct5225i4][/url:ct5225i4][/left:ct5225i4][right:ct5225i4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:ct5225i4][img:ct5225i4]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:ct5225i4][/url:ct5225i4][/right:ct5225i4][center:ct5225i4]
outbound_links.txt:6997: [6992] => http://www.roleplaygateway.com/rules-t1369.html:29znlxug][img:29znlxug]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:29znlxug][/url:29znlxug][/left:29znlxug][right:29znlxug][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:29znlxug][img:29znlxug]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:29znlxug][/url:29znlxug][/right:29znlxug][center:29znlxug]
outbound_links.txt:7046: [7041] => http://www.roleplaygateway.com/rules-t1369.html:3p7vwu05][img:3p7vwu05]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3p7vwu05][/url:3p7vwu05][/left:3p7vwu05][right:3p7vwu05][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3p7vwu05][img:3p7vwu05]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3p7vwu05][/url:3p7vwu05][/right:3p7vwu05][center:3p7vwu05][color=#FF0000:3p7vwu05]
outbound_links.txt:7063: [7058] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3isz8pba]The Rules[/url:3isz8pba], and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3isz8pba]All Relevant Documentation[/url:3isz8pba]
outbound_links.txt:7073: [7068] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:yjhg820t]our rules[/url:yjhg820t] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:yjhg820t]user manual.[/url:yjhg820t]
outbound_links.txt:7090: [7085] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2wr6b6bm]the rules[/url:2wr6b6bm] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2wr6b6bm]user manual.[/url:2wr6b6bm]
outbound_links.txt:7099: [7094] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:mr8pd3iv]the rules[/url:mr8pd3iv] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:mr8pd3iv]user manual.[/url:mr8pd3iv]
outbound_links.txt:7102: [7097] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:92vybima]the user manual[/url:92vybima] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:92vybima]rules.[/url:92vybima]
outbound_links.txt:7130: [7125] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:20r3t2k6]the RPGateway rules[/url:20r3t2k6] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:20r3t2k6]RPGateway Manual[/url:20r3t2k6]
outbound_links.txt:7139: [7134] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:28m4vvz0]rules[/url:28m4vvz0] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:28m4vvz0]user manual.[/url:28m4vvz0]
outbound_links.txt:7200: [7195] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:8judfsg2]the user manual (very important if you are new to forum role-playing)[/url:8judfsg2] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:8judfsg2]the rules.[/url:8judfsg2]
outbound_links.txt:7351: [7346] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:4v8m85i2]the RPGateway rules[/url:4v8m85i2] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:4v8m85i2]RPGateway Manual[/url:4v8m85i2]
outbound_links.txt:7364: [7359] => http://www.roleplaygateway.com/rules-t1369.html:3lpihm3l][img:3lpihm3l]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3lpihm3l][/url:3lpihm3l][/left:3lpihm3l][right:3lpihm3l][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3lpihm3l][img:3lpihm3l]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3lpihm3l][/url:3lpihm3l][/right:3lpihm3l][center:3lpihm3l][color=#FF0000:3lpihm3l]
outbound_links.txt:7419: [7414] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3pu8nqwb]the rules[/url:3pu8nqwb] and mayhap the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3pu8nqwb]user manual.[/url:3pu8nqwb]
outbound_links.txt:7421: [7416] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3enof4pj]the rules[/url:3enof4pj] and mayhap the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3enof4pj]user manual.[/url:3enof4pj]
outbound_links.txt:7423: [7418] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1rg0wcv0]the user manual[/url:1rg0wcv0] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1rg0wcv0]our rules.[/url:1rg0wcv0]
outbound_links.txt:7425: [7420] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:sgf172ou]the user manual[/url:sgf172ou] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:sgf172ou]our rules.[/url:sgf172ou]
outbound_links.txt:7427: [7422] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3cgyyygp]the rules[/url:3cgyyygp] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3cgyyygp]user manual.[/url:3cgyyygp]
outbound_links.txt:7429: [7424] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3oyp925r]the user manual[/url:3oyp925r] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3oyp925r]rules.[/url:3oyp925r]
outbound_links.txt:7432: [7427] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2zypd5z3]the user manual[/url:2zypd5z3] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2zypd5z3]rules.[/url:2zypd5z3]
outbound_links.txt:7438: [7433] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1hyfrmrb]Rules[/url:1hyfrmrb] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1hyfrmrb]User Manual[/url:1hyfrmrb]
outbound_links.txt:7458: [7453] => http://p-images.veoh.com/thumb/w277/user-vampire-girl10117.gif[/img:3ewies2p]
outbound_links.txt:7465: [7460] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:a84i85a0]the RPGateway rules[/url:a84i85a0] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:a84i85a0]RPGateway Manual[/url:a84i85a0]
outbound_links.txt:7470: [7465] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2h91c1xd]Rules[/url:2h91c1xd] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2h91c1xd]User Manual[/url:2h91c1xd]
outbound_links.txt:7472: [7467] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3ff9wtci]Rules[/url:3ff9wtci] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3ff9wtci]User Manual[/url:3ff9wtci]
outbound_links.txt:7473: [7468] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:6wus085z]Rules[/url:6wus085z] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:6wus085z]User Manual[/url:6wus085z]
outbound_links.txt:7540: [7535] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:9gvmtwyr]our rules[/url:9gvmtwyr] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:9gvmtwyr]user manual.[/url:9gvmtwyr]
outbound_links.txt:7554: [7549] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3ag6tyrh]our rules[/url:3ag6tyrh] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3ag6tyrh]the user manual.[/url:3ag6tyrh]
outbound_links.txt:7667: [7662] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3cfw78aj]the RPGateway rules[/url:3cfw78aj] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3cfw78aj]RPGateway Manual[/url:3cfw78aj]
outbound_links.txt:7672: [7667] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2la0kayv]the RPGateway rules[/url:2la0kayv] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2la0kayv]RPGateway Manual[/url:2la0kayv]
outbound_links.txt:7680: [7675] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3iprdikv]the RPGateway rules[/url:3iprdikv] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3iprdikv]RPGateway Manual[/url:3iprdikv]
outbound_links.txt:7703: [7698] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:cmwtkm5t]our rules[/url:cmwtkm5t] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:cmwtkm5t]user manual.[/url:cmwtkm5t]
outbound_links.txt:7705: [7700] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1ryvrwa8]user manual.[/url:1ryvrwa8] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1ryvrwa8]rules.[/url:1ryvrwa8]
outbound_links.txt:7707: [7702] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1ijfxam7]rules[/url:1ijfxam7] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1ijfxam7]user manual.[/url:1ijfxam7]
outbound_links.txt:7819: [7814] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:fre5s5b6]our rules[/url:fre5s5b6] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:fre5s5b6]user manual.[/url:fre5s5b6]
outbound_links.txt:7870: [7865] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2cg9rh4z]Read the Rules[/url:2cg9rh4z] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2cg9rh4z]Read All Relevant Documentation before Posting[/url:2cg9rh4z]
outbound_links.txt:7871: [7866] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:m3rus5vn]Read all rules[/url:m3rus5vn] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:m3rus5vn]Relevant Documentation[/url:m3rus5vn]
outbound_links.txt:7881: [7876] => http://www.roleplaygateway.com/rules-t1369.html:3kes804y][img:3kes804y]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3kes804y][/url:3kes804y][/left:3kes804y][right:3kes804y][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3kes804y][img:3kes804y]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3kes804y][/url:3kes804y][/right:3kes804y][center:3kes804y]Nice to see you here! I hope that you find something that you fit in with! If you have any questions, feel free to ask any of the staff, we'd be more than happy to help you figure it out![/center:3kes804y]
outbound_links.txt:7914: [7909] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:bofshyr8]Rules[/url:bofshyr8] to read over, as well as [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:bofshyr8]Relevant Documentation[/url:bofshyr8]
outbound_links.txt:7916: [7911] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1vzpjg34]Rules,[/url:1vzpjg34] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1vzpjg34]Relevant Documentation[/url:1vzpjg34]
outbound_links.txt:7918: [7913] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3m9a2mi5]Rules[/url:3m9a2mi5] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3m9a2mi5]Relevant Documentation[/url:3m9a2mi5]
outbound_links.txt:7920: [7915] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1qf9xhy8]Reading all Rules[/url:1qf9xhy8] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1qf9xhy8]Relevant Documentation[/url:1qf9xhy8]
outbound_links.txt:7922: [7917] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1p0tm2h9]Read the Rules[/url:1p0tm2h9], and all [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html]
outbound_links.txt:7942: [7937] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:29nv96y2]rules[/url:29nv96y2] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:29nv96y2]user manual.[/url:29nv96y2]
outbound_links.txt:7944: [7939] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1e1mplfi]the user manual[/url:1e1mplfi] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1e1mplfi]our rules.[/url:1e1mplfi]
outbound_links.txt:7946: [7941] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:tyyc8at4]our rules[/url:tyyc8at4] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:tyyc8at4]user manual.[/url:tyyc8at4]
outbound_links.txt:8011: [8006] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1351msak]Read All Rules[/url:1351msak] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1351msak]Relevant Documentation![/url:1351msak]
outbound_links.txt:8014: [8009] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2ieipry7]Read The Rules[/url:2ieipry7] And all [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2ieipry7]Relevant Documentation,[/url:2ieipry7]
outbound_links.txt:8016: [8011] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:26koc9zb]Read the Rules[/url:26koc9zb] and all [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:26koc9zb]Relevant Documentation[/url:26koc9zb]
outbound_links.txt:8020: [8015] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1bkqxvd0]Rules[/url:1bkqxvd0] And [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1bkqxvd0]The RPG Manual[/url:1bkqxvd0]
outbound_links.txt:8022: [8017] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2a7mqz1e]Reading the Rules[/url:2a7mqz1e] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2a7mqz1e]General Manual[/url:2a7mqz1e]
outbound_links.txt:8045: [8040] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2wvy4ao7]Read All Rules[/url:2wvy4ao7] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2wvy4ao7]Relevant Documentation[/url:2wvy4ao7]
outbound_links.txt:8047: [8042] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1r6s8vfy]Read The Rules[/url:1r6s8vfy] And All [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1r6s8vfy]Manuals[/url:1r6s8vfy]
outbound_links.txt:8049: [8044] => http://youtube.com/watch?v=VUVK-r6x1A0:2prsbtq9]King of Hearts[/url:2prsbtq9][/desc:2prsbtq9] and its Burning Grip tells me to greet you! [ic:2prsbtq9]Pumps up,[/ic:2prsbtq9] Take this, [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2prsbtq9]Our Rules.[/url:2prsbtq9] [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2prsbtq9]Our User Manual[/url:2prsbtq9] and All of My SUpport power! GREETING FINGAAA!" [ic:2prsbtq9]Greets Josh with his Burning Power[/ic:2prsbtq9]
outbound_links.txt:8085: [8080] => http://youtube.com/watch?v=G5ZmWXnfecY:3qolt93t]THE SWORD THAT CLEAVES EVIL![/url:3qolt93t][/desc:3qolt93t] With this Great Blade, there is nothing I cannot WELCOME! [ic:3qolt93t]Jumps towards FiziKx[/ic:3qolt93t] WELCOMMEEE [/ic] Welcomes FiziKx with one slash[/ic] CHESTOOOOO! Now I'm part of the Dynamic General Support Staff, a team, dedicated to helping you with anything RPGateway related. Answer my Call via Private messages, Or Instant Message and I will help you as soon as possible. DO NOT FORGET! [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3qolt93t]READ THE RULES[/url:3qolt93t] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3qolt93t]And Manual[/url:3qolt93t]
outbound_links.txt:8087: [8082] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1veddv3n]Read the Rules[/url:1veddv3n] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1veddv3n]Manual[/url:1veddv3n]
outbound_links.txt:8090: [8085] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3j13w4zo]Read the Rules[/url:3j13w4zo], and then [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3j13w4zo]And the Manual[/url:3j13w4zo]
outbound_links.txt:8094: [8089] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1tw4tvu0]Read the Rules,[/url:1tw4tvu0] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1tw4tvu0]All Documentation[/url:1tw4tvu0]
outbound_links.txt:8117: [8112] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:18jdctkc]Read our Rules,[/url:18jdctkc] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:18jdctkc]The Manual[/url:18jdctkc]
outbound_links.txt:8119: [8114] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1reenr5m]Read our Rules[/url:1reenr5m] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1reenr5m]Manual[/url:1reenr5m]
outbound_links.txt:8121: [8116] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:9tne3v9o]the RPGateway rules[/url:9tne3v9o] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:9tne3v9o]RPGateway Manual[/url:9tne3v9o]
outbound_links.txt:8124: [8119] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2ja44yh1]the RPGateway rules[/url:2ja44yh1] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2ja44yh1]RPGateway Manual[/url:2ja44yh1]
outbound_links.txt:8147: [8142] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:v4dwp207]the RPGateway rules[/url:v4dwp207] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:v4dwp207]RPGateway Manual[/url:v4dwp207]
outbound_links.txt:8149: [8144] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3gpk3lpg]the RPGateway rules[/url:3gpk3lpg] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3gpk3lpg]RPGateway Manual[/url:3gpk3lpg]
outbound_links.txt:8151: [8146] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2ht52ue4]the RPGateway rules[/url:2ht52ue4] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2ht52ue4]RPGateway Manual[/url:2ht52ue4]
outbound_links.txt:8153: [8148] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3o73pblw]the RPGateway rules[/url:3o73pblw] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3o73pblw]RPGateway Manual[/url:3o73pblw]
outbound_links.txt:8155: [8150] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2cprxxuc]the RPGateway rules[/url:2cprxxuc] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2cprxxuc]RPGateway Manual[/url:2cprxxuc]
outbound_links.txt:8158: [8153] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3l1atl35]the RPGateway rules[/url:3l1atl35] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3l1atl35]RPGateway Manual[/url:3l1atl35]
outbound_links.txt:8159: [8154] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:8rzuzmee]the RPGateway rules[/url:8rzuzmee] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:8rzuzmee]RPGateway Manual[/url:8rzuzmee]
outbound_links.txt:8161: [8156] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:tavavfv9]the RPGateway rules[/url:tavavfv9] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:tavavfv9]RPGateway Manual[/url:tavavfv9]
outbound_links.txt:8163: [8158] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1rd5bf7v]the RPGateway rules[/url:1rd5bf7v] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1rd5bf7v]RPGateway Manual[/url:1rd5bf7v]
outbound_links.txt:8165: [8160] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1znk6u7v]the RPGateway rules[/url:1znk6u7v] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1znk6u7v]RPGateway Manual[/url:1znk6u7v]
outbound_links.txt:8194: [8189] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3av1qukz]our rules[/url:3av1qukz] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3av1qukz]user manual.[/url:3av1qukz]
outbound_links.txt:8196: [8191] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3h0yunqh]the RPGateway rules[/url:3h0yunqh] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3h0yunqh]RPGateway Manual[/url:3h0yunqh]
outbound_links.txt:8199: [8194] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1juqce09]our rules[/url:1juqce09] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1juqce09]user manual.[/url:1juqce09]
outbound_links.txt:8212: [8207] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2p22o2qw]the RPGateway rules[/url:2p22o2qw] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2p22o2qw]RPGateway Manual[/url:2p22o2qw]
outbound_links.txt:8214: [8209] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2ggaoeih]the RPGateway rules[/url:2ggaoeih] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2ggaoeih]RPGateway Manual[/url:2ggaoeih]
outbound_links.txt:8224: [8219] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:302845sl]the RPGateway rules[/url:302845sl] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:302845sl]RPGateway Manual[/url:302845sl]
outbound_links.txt:8227: [8222] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2j9u92dw]the RPGateway rules[/url:2j9u92dw] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2j9u92dw]RPGateway Manual[/url:2j9u92dw]
outbound_links.txt:8257: [8252] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3t30bb5v]the RPGateway rules[/url:3t30bb5v] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3t30bb5v]RPGateway Manual[/url:3t30bb5v]
outbound_links.txt:8260: [8255] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3kztoowc]the RPGateway rules[/url:3kztoowc] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3kztoowc]RPGateway Manual[/url:3kztoowc]
outbound_links.txt:8266: [8261] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2fvs4pcq]our rules (we don't care if you do drugs ;p)[/url:2fvs4pcq] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2fvs4pcq]user manual.[/url:2fvs4pcq]
outbound_links.txt:8304: [8299] => http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1zb0ieyh]the user manual[/url:1zb0ieyh] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1zb0ieyh]rules.[/url:1zb0ieyh]
outbound_links.txt:8311: [8306] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2awcxhr4]the RPGateway rules[/url:2awcxhr4] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2awcxhr4]RPGateway Manual[/url:2awcxhr4]
outbound_links.txt:8313: [8308] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:lpm56ic3]the RPGateway rules[/url:lpm56ic3] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:lpm56ic3]RPGateway Manual[/url:lpm56ic3]
outbound_links.txt:8315: [8310] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1zocyzh9]the RPGateway rules[/url:1zocyzh9] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1zocyzh9]RPGateway Manual[/url:1zocyzh9]
outbound_links.txt:8341: [8336] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:27a6w1zz]our rules[/url:27a6w1zz] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:27a6w1zz]user manual.[/url:27a6w1zz]
outbound_links.txt:8342: [8337] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3gzqm5wl]the RPGateway rules[/url:3gzqm5wl] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3gzqm5wl]RPGateway Manual[/url:3gzqm5wl]
outbound_links.txt:8344: [8339] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:246by45n]the RPGateway rules[/url:246by45n] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:246by45n]RPGateway Manual[/url:246by45n]
outbound_links.txt:8346: [8341] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1zpf0pmf]the RPGateway rules[/url:1zpf0pmf] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1zpf0pmf]RPGateway Manual[/url:1zpf0pmf]
outbound_links.txt:8374: [8369] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3amd8hco]Read the Rules[/url:3amd8hco] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3amd8hco]The RPGateway User Manual[/url:3amd8hco]
outbound_links.txt:8377: [8372] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1mk5htk6]Read the Rules[/url:1mk5htk6] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1mk5htk6]The RPGateway User Manual[/url:1mk5htk6]
outbound_links.txt:8380: [8375] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:nu3s4fro]Read the Rules[/url:nu3s4fro] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:nu3s4fro]The RPGateway User Manual[/url:nu3s4fro]
outbound_links.txt:8382: [8377] => http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1hdmtis4]Read the Rules[/url:1hdmtis4] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1hdmtis4]The RPGateway User Manual[/url:1hdmtis4]
outbound_links.txt:16937: [162] => www.roleplaygateway.com/rules-t1369.html:1d7ulps9][img:1d7ulps9]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1d7ulps9][/url:1d7ulps9][/left:1d7ulps9][right:1d7ulps9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1d7ulps9][img:1d7ulps9]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1d7ulps9][/url:1d7ulps9][/right:1d7ulps9][center:1d7ulps9]Welcome to the site. I was actually searching for a good roleplay site when I was on google... turns out that this place rocks ><[/center:1d7ulps9
outbound_links.txt:16942: [167] => www.roleplaygateway.com/rules-t1369.html:12hao76z][img:12hao76z]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:12hao76z][/url:12hao76z][/left:12hao76z][right:12hao76z][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:12hao76z][img:12hao76z]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:12hao76z][/url:12hao76z][/right:12hao76z][center:12hao76z
outbound_links.txt:16955: [180] => www.roleplaygateway.com/rules-t1369.html:3q3vl07o][img:3q3vl07o]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3q3vl07o][/url:3q3vl07o][/left:3q3vl07o][right:3q3vl07o][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3q3vl07o][img:3q3vl07o]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3q3vl07o][/url:3q3vl07o][/right:3q3vl07o][center:3q3vl07o]Welcome to the site mang, good job hating on Gaia. -Assists in the hate tossing.-[/center:3q3vl07o
outbound_links.txt:16961: [186] => www.roleplaygateway.com/rules-t1369.html:1iui8vtv][img:1iui8vtv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1iui8vtv][/url:1iui8vtv][/left:1iui8vtv][right:1iui8vtv][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1iui8vtv][img:1iui8vtv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1iui8vtv][/url:1iui8vtv][/right:1iui8vtv][center:1iui8vtv]Welecome to the site Alexa. ^^ You can change that thingy in your User Control Panel (Next to the messages thingy at the top) Anyways, glad to have a new roleplayer to the site. Just PM(Private Message) the staff if you need any help![/center:1iui8vtv
outbound_links.txt:17000: [225] => www.roleplaygateway.com/rules-t1369.html:2e0rl7ba][img:2e0rl7ba]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2e0rl7ba][/url:2e0rl7ba][/left:2e0rl7ba][right:2e0rl7ba][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2e0rl7ba][img:2e0rl7ba]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2e0rl7ba][/url:2e0rl7ba][/right:2e0rl7ba][center:2e0rl7ba
outbound_links.txt:17059: [284] => www.roleplaygateway.com/rules-t1369.html:2w1yfbnw][img:2w1yfbnw]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2w1yfbnw][/url:2w1yfbnw][/left:2w1yfbnw][right:2w1yfbnw][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2w1yfbnw][img:2w1yfbnw]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2w1yfbnw][/url:2w1yfbnw][/right:2w1yfbnw][center:2w1yfbnw]In all reality these two links should put you on your way to a new world of gaming. However, if you really want to learn, drop by the Roleplay Academy. Our tutors would be more than happy to teach you![/center:2w1yfbnw
outbound_links.txt:17061: [286] => www.roleplaygateway.com/rules-t1369.html:1tt58x1x][img:1tt58x1x]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1tt58x1x][/url:1tt58x1x][/left:1tt58x1x][right:1tt58x1x][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1tt58x1x][img:1tt58x1x]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1tt58x1x][/url:1tt58x1x][/right:1tt58x1x][center:1tt58x1x]Reminds me of Prometheus and Bob from Kablam... Epic... Look that up on youtube if yeh dunno what I mean. Anyways! Welcome to RPG! If you need any help be sure to pm one of the staff. We also have a Roleplay Academy if you really wish to learn how to RP.[/center:1tt58x1x
outbound_links.txt:17071: [296] => www.roleplaygateway.com/rules-t1369.html:3zzknfu5][img:3zzknfu5]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3zzknfu5][/url:3zzknfu5][/left:3zzknfu5][right:3zzknfu5][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3zzknfu5][img:3zzknfu5]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3zzknfu5][/url:3zzknfu5][/right:3zzknfu5][center:3zzknfu5]Yeh don't really even have to wait for an invitation. Many of our roleplays are open as along as you ask a game master. (Person running the roleplay.) However, we also have a roleplay academy! You should check it out ^^. Welcome to RPG![/center:3zzknfu5
outbound_links.txt:17234: [459] => www.roleplaygateway.com/the-rpg-user-manual-all-users-must-read-t7.html#p54599:7e421][b:7e421]Chapter 1[/b:7e421]
[i:7e421]What is RPGw and Roleplaying?[/i:7e421][/url:7e421
outbound_links.txt:17235: [460] => www.roleplaygateway.com/the-rpg-user-manual-t7.html#p54600:7e421][b:7e421]Chapter 2[/b:7e421]
[i:7e421]Character Creation[/i:7e421][/url:7e421
outbound_links.txt:17236: [461] => www.roleplaygateway.com/the-rpg-user-manual-t7.html#p54601:7e421][b:7e421]Chapter 3[/b:7e421]
[i:7e421]Roleplaying[/i:7e421][/url:7e421
outbound_links.txt:17237: [462] => www.roleplaygateway.com/the-rpg-user-manual-t7.html#p54602:7e421][b:7e421]Chapter 4[/b:7e421]
[i:7e421]Frequently Used Terms[/i:7e421][/url:7e421
outbound_links.txt:17238: [463] => www.roleplaygateway.com/the-rpg-user-manual-t7.html#p54603:7e421][b:7e421]Chapter 5[/b:7e421]
[i:7e421]Extra Information[/i:7e421][/url:7e421
outbound_links.txt:17239: [464] => www.roleplaygateway.com/the-rpg-user-manual-t7.html#p54604:7e421][b:7e421]Chapter 6[/b:7e421]
[i:7e421]Tips and Links[/i:7e421][/url:7e421
outbound_links.txt:19100: [2325] => www.roleplaygateway.com/role-play-academy-f125.html:742de]RPA[/url:742de] and after you have read over and understood the [url=http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:742de]Gwing User Manual[/url:742de] and keep to the [url=http://www.roleplaygateway.com/role-players-creed-t3378.html:742de]Role Player's Creed,[/url:742de] perhaps THEN you could be considered [quote:742de]the epitome of rpg posting[/quote:742de] and everyone will [quote:742de] worsphip my abilities and beg for more. [/quote:742de] [By the way, worship is spelled with one p.
outbound_links.txt:19213: [2438] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:b5640]The Gwing User Manual[/url:b5640
outbound_links.txt:19642: [2867] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:665b0]Rules[/url:665b0][/b:665b0
outbound_links.txt:19649: [2874] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:825ce]Rules[/url:825ce][/b:825ce
outbound_links.txt:19659: [2884] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:7e6f5]Rules[/url:7e6f5][/b:7e6f5
outbound_links.txt:19663: [2888] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:5248c]Rules[/url:5248c][/b:5248c
outbound_links.txt:19670: [2895] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:e9a5b]Rules[/url:e9a5b][/b:e9a5b
outbound_links.txt:19680: [2905] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:3188d]Rules[/url:3188d][/b:3188d
outbound_links.txt:19694: [2919] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:1c1ce]Rules[/url:1c1ce][/b:1c1ce
outbound_links.txt:19698: [2923] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:de9e5]Rules[/url:de9e5][/b:de9e5
outbound_links.txt:19702: [2927] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:b9280]Rules[/url:b9280][/b:b9280
outbound_links.txt:19712: [2937] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:fa5a6]Rules[/url:fa5a6][/b:fa5a6
outbound_links.txt:19726: [2951] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:6bbb2]Rules[/url:6bbb2][/b:6bbb2
outbound_links.txt:19734: [2959] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:cef72]Rules[/url:cef72][/b:cef72
outbound_links.txt:19743: [2968] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:ae25d]Rules[/url:ae25d][/b:ae25d
outbound_links.txt:19759: [2984] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:9e1b3]Rules[/url:9e1b3][/b:9e1b3
outbound_links.txt:19764: [2989] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:9f263]Rules[/url:9f263][/b:9f263
outbound_links.txt:19778: [3003] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:f4da7]Rules[/url:f4da7][/b:f4da7
outbound_links.txt:19786: [3011] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:0aae5]Rules[/url:0aae5][/b:0aae5
outbound_links.txt:19791: [3016] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:4451a]Rules[/url:4451a][/b:4451a
outbound_links.txt:19819: [3044] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:d3242]Rules[/url:d3242][/b:d3242
outbound_links.txt:19823: [3048] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:45347]Rules[/url:45347][/b:45347
outbound_links.txt:19827: [3052] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:2ebc1]Rules[/url:2ebc1][/b:2ebc1
outbound_links.txt:19831: [3056] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:31a16]Rules[/url:31a16][/b:31a16
outbound_links.txt:19839: [3064] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:c41c1]Rules[/url:c41c1][/b:c41c1
outbound_links.txt:19846: [3071] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:0f3fc]Rules[/url:0f3fc][/b:0f3fc
outbound_links.txt:19850: [3075] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:74ffd]Rules[/url:74ffd][/b:74ffd
outbound_links.txt:19867: [3092] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:81cf6]Rules[/url:81cf6][/b:81cf6
outbound_links.txt:19872: [3097] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:bc07a]Rules[/url:bc07a][/b:bc07a
outbound_links.txt:19876: [3101] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:49fd1]Rules[/url:49fd1][/b:49fd1
outbound_links.txt:19896: [3121] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:f649b]Rules[/url:f649b][/b:f649b
outbound_links.txt:19906: [3131] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:378ef]Rules[/url:378ef][/b:378ef
outbound_links.txt:19911: [3136] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:cbeaf]Rules[/url:cbeaf][/b:cbeaf
outbound_links.txt:19960: [3185] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:63f75]Rules[/url:63f75][/b:63f75
outbound_links.txt:19965: [3190] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:52978]Rules[/url:52978][/b:52978
outbound_links.txt:19988: [3213] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:27ddb]Rules[/url:27ddb][/b:27ddb
outbound_links.txt:19992: [3217] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:26b5d]Rules[/url:26b5d][/b:26b5d
outbound_links.txt:20003: [3228] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:d09cc]Rules[/url:d09cc][/b:d09cc
outbound_links.txt:20007: [3232] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:21c8f]Rules[/url:21c8f][/b:21c8f
outbound_links.txt:20045: [3270] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:2y04jni3]Rules[/url:2y04jni3][/b:2y04jni3
outbound_links.txt:20069: [3294] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:k2upkigr]Rules[/url:k2upkigr][/b:k2upkigr
outbound_links.txt:20073: [3298] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:32znaajv]Rules[/url:32znaajv][/b:32znaajv
outbound_links.txt:20077: [3302] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:2nplxfhg]Rules[/url:2nplxfhg][/b:2nplxfhg
outbound_links.txt:20081: [3306] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:37a2yyn6]Rules[/url:37a2yyn6][/b:37a2yyn6
outbound_links.txt:20087: [3312] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:zcs5n7yk]Rules[/url:zcs5n7yk][/b:zcs5n7yk
outbound_links.txt:20200: [3425] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:3ac2t1te]Rules[/url:3ac2t1te][/b:3ac2t1te
outbound_links.txt:20205: [3430] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:1jw4qxpa]Rules[/url:1jw4qxpa][/b:1jw4qxpa
outbound_links.txt:20212: [3437] => www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:8pkyruco]Rules[/url:8pkyruco][/b:8pkyruco
outbound_links.txt:20508: [3733] => www.roleplaygateway.com/the-newbie-guide-roleplaygateway-read-this-first-t2769.html:3f5wu1uz]Newbie's Guide to RolePlayGateway[/url:3f5wu1uz], then follow the links spread throughout the article for more information. Your first stop should be the [url=http://www.roleplaygateway.com/the-gwing-user-manual-mods-please-expound-t7.html:3f5wu1uz]GWing User Manual[/url:3f5wu1uz
outbound_links.txt:20746: [3971] => www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:emx2uca2]GWing Manual (Now the RPGw User Manual[/url:emx2uca2
outbound_links.txt:20748: [3973] => www.roleplaygateway.com/rules-t1369.html:1ypamnqj][img:1ypamnqj]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1ypamnqj][/url:1ypamnqj][/left:1ypamnqj][right:1ypamnqj][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1ypamnqj][img:1ypamnqj]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1ypamnqj][/url:1ypamnqj][/right:1ypamnqj][center:1ypamnqj]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1ypamnqj
outbound_links.txt:20753: [3978] => www.roleplaygateway.com/rules-t1369.html:2h1x28ug][img:2h1x28ug]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2h1x28ug][/url:2h1x28ug][/left:2h1x28ug][right:2h1x28ug][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2h1x28ug][img:2h1x28ug]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2h1x28ug][/url:2h1x28ug][/right:2h1x28ug][center:2h1x28ug]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:2h1x28ug
outbound_links.txt:20780: [4005] => www.roleplaygateway.com/rules-t1369.html:5whr8s9x][img:5whr8s9x]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:5whr8s9x][/url:5whr8s9x][/left:5whr8s9x][right:5whr8s9x][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:5whr8s9x][img:5whr8s9x]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:5whr8s9x][/url:5whr8s9x][/right:5whr8s9x][center:5whr8s9x]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:5whr8s9x
outbound_links.txt:20782: [4007] => www.roleplaygateway.com/rules-t1369.html:pphhdsjc][img:pphhdsjc]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:pphhdsjc][/url:pphhdsjc][/left:pphhdsjc][right:pphhdsjc][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:pphhdsjc][img:pphhdsjc]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:pphhdsjc][/url:pphhdsjc][/right:pphhdsjc][center:pphhdsjc]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:pphhdsjc
outbound_links.txt:20784: [4009] => www.roleplaygateway.com/rules-t1369.html:mbjlflrb][img:mbjlflrb]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:mbjlflrb][/url:mbjlflrb][/left:mbjlflrb][right:mbjlflrb][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:mbjlflrb][img:mbjlflrb]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:mbjlflrb][/url:mbjlflrb][/right:mbjlflrb][center:mbjlflrb]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:mbjlflrb
outbound_links.txt:20841: [4066] => www.roleplaygateway.com/rules-t1369.html:2ij509qa][img:2ij509qa]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2ij509qa][/url:2ij509qa][/left:2ij509qa][right:2ij509qa][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2ij509qa][img:2ij509qa]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2ij509qa][/url:2ij509qa][/right:2ij509qa][center:2ij509qa]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:2ij509qa
outbound_links.txt:20843: [4068] => www.roleplaygateway.com/rules-t1369.html:o121publ][img:o121publ]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:o121publ][/url:o121publ][/left:o121publ][right:o121publ][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:o121publ][img:o121publ]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:o121publ][/url:o121publ][/right:o121publ][center:o121publ]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:o121publ
outbound_links.txt:20845: [4070] => www.roleplaygateway.com/rules-t1369.html:2eqelid6][img:2eqelid6]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2eqelid6][/url:2eqelid6][/left:2eqelid6][right:2eqelid6][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2eqelid6][img:2eqelid6]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2eqelid6][/url:2eqelid6][/right:2eqelid6][center:2eqelid6]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:2eqelid6
outbound_links.txt:20855: [4080] => www.roleplaygateway.com/rules-t1369.html:1lg8qv10][img:1lg8qv10]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1lg8qv10][/url:1lg8qv10][/left:1lg8qv10][right:1lg8qv10][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1lg8qv10][img:1lg8qv10]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1lg8qv10][/url:1lg8qv10][/right:1lg8qv10][center:1lg8qv10]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1lg8qv10
outbound_links.txt:20858: [4083] => www.roleplaygateway.com/rules-t1369.html:197wm3lu][img:197wm3lu]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:197wm3lu][/url:197wm3lu][/left:197wm3lu][right:197wm3lu][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:197wm3lu][img:197wm3lu]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:197wm3lu][/url:197wm3lu][/right:197wm3lu][center:197wm3lu]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:197wm3lu
outbound_links.txt:20876: [4101] => www.roleplaygateway.com/rules-t1369.html:3ukavgke][img:3ukavgke]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3ukavgke][/url:3ukavgke][/left:3ukavgke][right:3ukavgke][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3ukavgke][img:3ukavgke]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3ukavgke][/url:3ukavgke][/right:3ukavgke][center:3ukavgke]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:3ukavgke
outbound_links.txt:20878: [4103] => www.roleplaygateway.com/rules-t1369.html:3rswt5yj][img:3rswt5yj]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3rswt5yj][/url:3rswt5yj][/left:3rswt5yj][right:3rswt5yj][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3rswt5yj][img:3rswt5yj]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3rswt5yj][/url:3rswt5yj][/right:3rswt5yj][center:3rswt5yj]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:3rswt5yj
outbound_links.txt:20880: [4105] => www.roleplaygateway.com/rules-t1369.html:cuyztq9n][img:cuyztq9n]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:cuyztq9n][/url:cuyztq9n][/left:cuyztq9n][right:cuyztq9n][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:cuyztq9n][img:cuyztq9n]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:cuyztq9n][/url:cuyztq9n][/right:cuyztq9n][center:cuyztq9n]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:cuyztq9n
outbound_links.txt:20882: [4107] => www.roleplaygateway.com/rules-t1369.html:2343xg46][img:2343xg46]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2343xg46][/url:2343xg46][/left:2343xg46][right:2343xg46][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2343xg46][img:2343xg46]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2343xg46][/url:2343xg46][/right:2343xg46][center:2343xg46]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:2343xg46
outbound_links.txt:20975: [4200] => www.roleplaygateway.com/rules-t1369.html:1gy2efot][img:1gy2efot]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1gy2efot][/url:1gy2efot][/left:1gy2efot][right:1gy2efot][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1gy2efot][img:1gy2efot]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1gy2efot][/url:1gy2efot][/right:1gy2efot][center:1gy2efot]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1gy2efot
outbound_links.txt:20977: [4202] => www.roleplaygateway.com/rules-t1369.html:355cclop][img:355cclop]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:355cclop][/url:355cclop][/left:355cclop][right:355cclop][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:355cclop][img:355cclop]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:355cclop][/url:355cclop][/right:355cclop][center:355cclop]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:355cclop
outbound_links.txt:21006: [4231] => www.roleplaygateway.com/rules-t1369.html:3418ug3h][img:3418ug3h]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3418ug3h][/url:3418ug3h][/left:3418ug3h][right:3418ug3h][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3418ug3h][img:3418ug3h]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3418ug3h][/url:3418ug3h][/right:3418ug3h][center:3418ug3h]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:3418ug3h
outbound_links.txt:21008: [4233] => www.roleplaygateway.com/rules-t1369.html:1jw96sx9][img:1jw96sx9]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1jw96sx9][/url:1jw96sx9][/left:1jw96sx9][right:1jw96sx9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1jw96sx9][img:1jw96sx9]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1jw96sx9][/url:1jw96sx9][/right:1jw96sx9][center:1jw96sx9]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1jw96sx9
outbound_links.txt:21082: [4307] => www.roleplaygateway.com/rules-t1369.html:1gmfb0c4][img:1gmfb0c4]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1gmfb0c4][/url:1gmfb0c4][/left:1gmfb0c4][right:1gmfb0c4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1gmfb0c4][img:1gmfb0c4]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1gmfb0c4][/url:1gmfb0c4][/right:1gmfb0c4][center:1gmfb0c4]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1gmfb0c4
outbound_links.txt:21084: [4309] => www.roleplaygateway.com/rules-t1369.html:174ffx7k][img:174ffx7k]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:174ffx7k][/url:174ffx7k][/left:174ffx7k][right:174ffx7k][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:174ffx7k][img:174ffx7k]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:174ffx7k][/url:174ffx7k][/right:174ffx7k][center:174ffx7k]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:174ffx7k
outbound_links.txt:21363: [4588] => www.roleplaygateway.com/rules-t1369.html:35837b7p][img:35837b7p]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:35837b7p][/url:35837b7p][/left:35837b7p][right:35837b7p][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:35837b7p][img:35837b7p]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:35837b7p][/url:35837b7p][/right:35837b7p][center:35837b7p]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:35837b7p
outbound_links.txt:21365: [4590] => www.roleplaygateway.com/rules-t1369.html:mgbxiovy][img:mgbxiovy]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:mgbxiovy][/url:mgbxiovy][/left:mgbxiovy][right:mgbxiovy][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:mgbxiovy][img:mgbxiovy]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:mgbxiovy][/url:mgbxiovy][/right:mgbxiovy][center:mgbxiovy]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:mgbxiovy
outbound_links.txt:21367: [4592] => www.roleplaygateway.com/rules-t1369.html:4sf2vv10][img:4sf2vv10]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:4sf2vv10][/url:4sf2vv10][/left:4sf2vv10][right:4sf2vv10][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:4sf2vv10][img:4sf2vv10]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:4sf2vv10][/url:4sf2vv10][/right:4sf2vv10][center:4sf2vv10]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:4sf2vv10
outbound_links.txt:21371: [4596] => www.roleplaygateway.com/rules-t1369.html:18tjvpwz][img:18tjvpwz]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:18tjvpwz][/url:18tjvpwz][/left:18tjvpwz][right:18tjvpwz][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:18tjvpwz][img:18tjvpwz]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:18tjvpwz][/url:18tjvpwz][/right:18tjvpwz][center:18tjvpwz]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:18tjvpwz
outbound_links.txt:21393: [4618] => www.roleplaygateway.com/rules-t1369.html:34swfkff][img:34swfkff]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:34swfkff][/url:34swfkff][/left:34swfkff][right:34swfkff][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:34swfkff][img:34swfkff]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:34swfkff][/url:34swfkff][/right:34swfkff][center:34swfkff]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:34swfkff
outbound_links.txt:21462: [4687] => www.roleplaygateway.com/rules-t1369.html:1n9ao0k0][img:1n9ao0k0]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1n9ao0k0][/url:1n9ao0k0][/left:1n9ao0k0][right:1n9ao0k0][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1n9ao0k0][img:1n9ao0k0]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1n9ao0k0][/url:1n9ao0k0][/right:1n9ao0k0][center:1n9ao0k0]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:1n9ao0k0
outbound_links.txt:21464: [4689] => www.roleplaygateway.com/rules-t1369.html:2lw1yuz1][img:2lw1yuz1]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2lw1yuz1][/url:2lw1yuz1][/left:2lw1yuz1][right:2lw1yuz1][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2lw1yuz1][img:2lw1yuz1]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2lw1yuz1][/url:2lw1yuz1][/right:2lw1yuz1][center:2lw1yuz1]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:2lw1yuz1
outbound_links.txt:21466: [4691] => www.roleplaygateway.com/rules-t1369.html:7gw28ni5][img:7gw28ni5]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:7gw28ni5][/url:7gw28ni5][/left:7gw28ni5][right:7gw28ni5][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:7gw28ni5][img:7gw28ni5]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:7gw28ni5][/url:7gw28ni5][/right:7gw28ni5][center:7gw28ni5]Welcome to the site! Rock on for checking us out ^^. We are always glad to have new members. Click on the rules to check out our rules before posting. If you are new to roleplaying, check out the Guide to RPGw! Okay, you don't really have an option v.v; You actually have to read both of them. Anyways, don't mind the dead bunny doll. It's cute, enjoy it.[/center:7gw28ni5
outbound_links.txt:21491: [4716] => www.roleplaygateway.com/rules-t1369.html:mzxfhf4o][img:mzxfhf4o]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:mzxfhf4o][/url:mzxfhf4o][/left:mzxfhf4o][right:mzxfhf4o][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:mzxfhf4o][img:mzxfhf4o]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:mzxfhf4o][/url:mzxfhf4o][/right:mzxfhf4o][center:mzxfhf4o
outbound_links.txt:21493: [4718] => www.roleplaygateway.com/rules-t1369.html:17r24190][img:17r24190]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:17r24190][/url:17r24190][/left:17r24190][right:17r24190][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:17r24190][img:17r24190]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:17r24190][/url:17r24190][/right:17r24190][center:17r24190]Post your text here![/center:17r24190
outbound_links.txt:21495: [4720] => www.roleplaygateway.com/rules-t1369.html][img]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img][/url][/left][right][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html][img]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img][/url][/right][center
outbound_links.txt:21497: [4722] => www.roleplaygateway.com/rules-t1369.html:17r24190][img:17r24190]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:17r24190][/url:17r24190][/left:17r24190][right:17r24190][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:17r24190][img:17r24190]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:17r24190][/url:17r24190][/right:17r24190][center:17r24190]Post your text here![/center:17r24190
outbound_links.txt:21499: [4724] => www.roleplaygateway.com/rules-t1369.html][IMG]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/IMG][/url][/left][right][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html][IMG]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/IMG][/url][/right][center
outbound_links.txt:21504: [4729] => www.roleplaygateway.com/rules-t1369.html:q10awveo][img:q10awveo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:q10awveo][/url:q10awveo][/left:q10awveo][right:q10awveo][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:q10awveo][img:q10awveo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:q10awveo][/url:q10awveo][/right:q10awveo][center:q10awveo]It's so great to have you as part of the site, Yalisha! Take a look at these links to help you get better acquainted with out site and what we're all about![/center:q10awveo
outbound_links.txt:21549: [4774] => www.roleplaygateway.com/rules-t1369.html:5ad4yrhs][img:5ad4yrhs]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:5ad4yrhs][/url:5ad4yrhs][/left:5ad4yrhs][right:5ad4yrhs][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:5ad4yrhs][img:5ad4yrhs]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:5ad4yrhs][/url:5ad4yrhs][/right:5ad4yrhs][center:5ad4yrhs]Oh yeh, Welcome to the site Jazz... Btw.. Um.. What everyone said before me. But, add some epic.[/center:5ad4yrhs
outbound_links.txt:21551: [4776] => www.roleplaygateway.com/rules-t1369.html:3ow3z21b][img:3ow3z21b]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3ow3z21b][/url:3ow3z21b][/left:3ow3z21b][right:3ow3z21b][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3ow3z21b][img:3ow3z21b]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3ow3z21b][/url:3ow3z21b][/right:3ow3z21b][center:3ow3z21b]With as much help as we have floating around here. It should be simple enough to dive right in. Welcome to RPG.[/center:3ow3z21b
outbound_links.txt:21553: [4778] => www.roleplaygateway.com/rules-t1369.html:1ky9uuqd][img:1ky9uuqd]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1ky9uuqd][/url:1ky9uuqd][/left:1ky9uuqd][right:1ky9uuqd][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1ky9uuqd][img:1ky9uuqd]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1ky9uuqd][/url:1ky9uuqd][/right:1ky9uuqd][center:1ky9uuqd]I have these two links you can check out to get started. Other than that, it's exploration on your own. However feel free to PM me if you need any help ^^. Welcome to RPG.[/center:1ky9uuqd
outbound_links.txt:21555: [4780] => www.roleplaygateway.com/rules-t1369.html:16gzmjvj][img:16gzmjvj]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:16gzmjvj][/url:16gzmjvj][/left:16gzmjvj][right:16gzmjvj][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:16gzmjvj][img:16gzmjvj]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:16gzmjvj][/url:16gzmjvj][/right:16gzmjvj][center:16gzmjvj]Welcome to the site. Good luck with the whole universe thing... Chances are you master one, and someone will make another one. Anyways, welcome to RPG![/center:16gzmjvj
outbound_links.txt:21559: [4784] => www.roleplaygateway.com/rules-t1369.html:3vcwptyu][img:3vcwptyu]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3vcwptyu][/url:3vcwptyu][/left:3vcwptyu][right:3vcwptyu][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3vcwptyu][img:3vcwptyu]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3vcwptyu][/url:3vcwptyu][/right:3vcwptyu][center:3vcwptyu]Good news, we beat the snot out of Gaia. Bad news, Gaia really has no standards to roleplaying. Awesome news, We'll help you with whatever you need. Welcome to RPG![/center:3vcwptyu
outbound_links.txt:21569: [4794] => www.roleplaygateway.com/rules-t1369.html:3gbhkbzc][img:3gbhkbzc]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3gbhkbzc][/url:3gbhkbzc][/left:3gbhkbzc][right:3gbhkbzc][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3gbhkbzc][img:3gbhkbzc]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3gbhkbzc][/url:3gbhkbzc][/right:3gbhkbzc][center:3gbhkbzc
outbound_links.txt:21571: [4796] => www.roleplaygateway.com/rules-t1369.html:3etag2f8][img:3etag2f8]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3etag2f8][/url:3etag2f8][/left:3etag2f8][right:3etag2f8][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3etag2f8][img:3etag2f8]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3etag2f8][/url:3etag2f8][/right:3etag2f8][center:3etag2f8]Welcome to RPG. I'm sure we have all wanted to cruise with the epic one, in the Fett Vett... Yes I know I have.[/center:3etag2f8
outbound_links.txt:21573: [4798] => www.roleplaygateway.com/rules-t1369.html:w72wbn76][img:w72wbn76]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:w72wbn76][/url:w72wbn76][/left:w72wbn76][right:w72wbn76][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:w72wbn76][img:w72wbn76]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:w72wbn76][/url:w72wbn76][/right:w72wbn76][center:w72wbn76
outbound_links.txt:21575: [4800] => www.roleplaygateway.com/rules-t1369.html:1spejqvt][img:1spejqvt]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1spejqvt][/url:1spejqvt][/left:1spejqvt][right:1spejqvt][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1spejqvt][img:1spejqvt]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1spejqvt][/url:1spejqvt][/right:1spejqvt][center:1spejqvt]It's not who you want to be. Check over the rules, look over our guidelines. This is a freeform site, meaning we have hundreds of different roleplays going on at one time. So yeh.. I'd start small, read the guides.[/center:1spejqvt
outbound_links.txt:21577: [4802] => www.roleplaygateway.com/rules-t1369.html:enx3q6bc][img:enx3q6bc]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:enx3q6bc][/url:enx3q6bc][/left:enx3q6bc][right:enx3q6bc][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:enx3q6bc][img:enx3q6bc]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:enx3q6bc][/url:enx3q6bc][/right:enx3q6bc][center:enx3q6bc]Not from Gaia? Well, you have just beaten many people on my cool list, about to move on to slightly epic list. Anyways, glad to have yeh here. Welcome to RPG.[/center:enx3q6bc
outbound_links.txt:21586: [4811] => www.roleplaygateway.com/rules-t1369.html:3dniuci8][img:3dniuci8]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3dniuci8][/url:3dniuci8][/left:3dniuci8][right:3dniuci8][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3dniuci8][img:3dniuci8]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3dniuci8][/url:3dniuci8][/right:3dniuci8][center:3dniuci8]Intimate roleplays are not allowed. That's simple enough. So you should find it great here. Lol. Welcome to RPG.[/center:3dniuci8
outbound_links.txt:21592: [4817] => www.roleplaygateway.com/rules-t1369.html:1x27axoo][img:1x27axoo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1x27axoo][/url:1x27axoo][/left:1x27axoo][right:1x27axoo][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1x27axoo][img:1x27axoo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1x27axoo][/url:1x27axoo][/right:1x27axoo][center:1x27axoo]First off, welcome to RPG. Secondly, this is a freeform roleplay website. No need to make just one character. I'd get started by checking the rules and the guide, I've provided the links in this post. There are tons of roleplays going on at once, it's just a matter of finding one you like. Welcome to the site![/center:1x27axoo
outbound_links.txt:21606: [4831] => www.roleplaygateway.com/rules-t1369.html:2ixqccu9][img:2ixqccu9]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2ixqccu9][/url:2ixqccu9][/left:2ixqccu9][right:2ixqccu9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2ixqccu9][img:2ixqccu9]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2ixqccu9][/url:2ixqccu9][/right:2ixqccu9][center:2ixqccu9]Welcome to RPG! While it's great that you've started posting, if you really want to know a good place to go. We have the roleplaying academy. Not only does it help your over all roleplaying; it can also teach you about making your own roleplays and the likes.[/center:2ixqccu9
outbound_links.txt:21616: [4841] => www.roleplaygateway.com/rules-t1369.html:2eregi7s][img:2eregi7s]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2eregi7s][/url:2eregi7s][/left:2eregi7s][right:2eregi7s][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2eregi7s][img:2eregi7s]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2eregi7s][/url:2eregi7s][/right:2eregi7s][center:2eregi7s
outbound_links.txt:21619: [4844] => www.roleplaygateway.com/rules-t1369.html:fulnyqo4][img:fulnyqo4]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:fulnyqo4][/url:fulnyqo4][/left:fulnyqo4][right:fulnyqo4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:fulnyqo4][img:fulnyqo4]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:fulnyqo4][/url:fulnyqo4][/right:fulnyqo4][center:fulnyqo4
outbound_links.txt:21646: [4871] => www.roleplaygateway.com/rules-t1369.html:5jjwsj8q][img:5jjwsj8q]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:5jjwsj8q][/url:5jjwsj8q][/left:5jjwsj8q][right:5jjwsj8q][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:5jjwsj8q][img:5jjwsj8q]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:5jjwsj8q][/url:5jjwsj8q][/right:5jjwsj8q][center:5jjwsj8q
outbound_links.txt:21652: [4877] => www.roleplaygateway.com/rules-t1369.html:p7xcn4yl][img:p7xcn4yl]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:p7xcn4yl][/url:p7xcn4yl][/left:p7xcn4yl][right:p7xcn4yl][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:p7xcn4yl][img:p7xcn4yl]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:p7xcn4yl][/url:p7xcn4yl][/right:p7xcn4yl][center:p7xcn4yl
outbound_links.txt:21663: [4888] => www.roleplaygateway.com/rules-t1369.html:3gi4m5bo][img:3gi4m5bo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3gi4m5bo][/url:3gi4m5bo][/left:3gi4m5bo][right:3gi4m5bo][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3gi4m5bo][img:3gi4m5bo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3gi4m5bo][/url:3gi4m5bo][/right:3gi4m5bo][center:3gi4m5bo
outbound_links.txt:21665: [4890] => www.roleplaygateway.com/rules-t1369.html:20xiq3jq][img:20xiq3jq]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:20xiq3jq][/url:20xiq3jq][/left:20xiq3jq][right:20xiq3jq][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:20xiq3jq][img:20xiq3jq]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:20xiq3jq][/url:20xiq3jq][/right:20xiq3jq][center:20xiq3jq
outbound_links.txt:21674: [4899] => www.roleplaygateway.com/rules-t1369.html:32bp7ext][img:32bp7ext]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:32bp7ext][/url:32bp7ext][/left:32bp7ext][right:32bp7ext][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:32bp7ext][img:32bp7ext]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:32bp7ext][/url:32bp7ext][/right:32bp7ext][center:32bp7ext]Welcome to RPG! If you need any help, just like Dart said, private messages one of us and we will be glad to help out. Quite a few movies yeh got there too ^^ I take it you're a fellow anime fan ^^ Anyways, please be sure to read the rules and the guide as well to help ou get stared around here.[/center:32bp7ext
outbound_links.txt:21686: [4911] => www.roleplaygateway.com/rules-t1369.html:1zebje59][img:1zebje59]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1zebje59][/url:1zebje59][/left:1zebje59][right:1zebje59][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1zebje59][img:1zebje59]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1zebje59][/url:1zebje59][/right:1zebje59][center:1zebje59
outbound_links.txt:21696: [4921] => www.roleplaygateway.com/rules-t1369.html:2r53xaef][img:2r53xaef]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2r53xaef][/url:2r53xaef][/left:2r53xaef][right:2r53xaef][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2r53xaef][img:2r53xaef]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2r53xaef][/url:2r53xaef][/right:2r53xaef][center:2r53xaef]Welcome to RPG! Glad to have you with us ^^. It would be great to have some great RPG con for us all to go to v.v perhaps one day. Lol.. Anyways, please check out the guide and the rules. If you need any help please PM me or any of the staff! Just let us know what you need mang ^^[/center:2r53xaef
outbound_links.txt:21699: [4924] => www.roleplaygateway.com/rules-t1369.html:wl91qgzp][img:wl91qgzp]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:wl91qgzp][/url:wl91qgzp][/left:wl91qgzp][right:wl91qgzp][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:wl91qgzp][img:wl91qgzp]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:wl91qgzp][/url:wl91qgzp][/right:wl91qgzp][center:wl91qgzp
outbound_links.txt:21704: [4929] => www.roleplaygateway.com/rules-t1369.html:osyh2fs6][img:osyh2fs6]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:osyh2fs6][/url:osyh2fs6][/left:osyh2fs6][right:osyh2fs6][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:osyh2fs6][img:osyh2fs6]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:osyh2fs6][/url:osyh2fs6][/right:osyh2fs6][center:osyh2fs6
outbound_links.txt:21713: [4938] => www.roleplaygateway.com/rules-t1369.html:2q79wf6d][img:2q79wf6d]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2q79wf6d][/url:2q79wf6d][/left:2q79wf6d][right:2q79wf6d][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2q79wf6d][img:2q79wf6d]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2q79wf6d][/url:2q79wf6d][/right:2q79wf6d][center:2q79wf6d
outbound_links.txt:21715: [4940] => www.roleplaygateway.com/rules-t1369.html:3qn0l76q][img:3qn0l76q]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3qn0l76q][/url:3qn0l76q][/left:3qn0l76q][right:3qn0l76q][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3qn0l76q][img:3qn0l76q]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3qn0l76q][/url:3qn0l76q][/right:3qn0l76q][center:3qn0l76q]Welcome to RPG ^^. Glad to see yah have already started posting. If you happen to have any questions about anything here, PM me and let me know; or if yah just wanna chat about something. Also, If you havent, check out the rules and the guide for the site ^^.[/center:3qn0l76q
outbound_links.txt:21717: [4942] => www.roleplaygateway.com/rules-t1369.html:1l2qnkpz][img:1l2qnkpz]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1l2qnkpz][/url:1l2qnkpz][/left:1l2qnkpz][right:1l2qnkpz][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1l2qnkpz][img:1l2qnkpz]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1l2qnkpz][/url:1l2qnkpz][/right:1l2qnkpz][center:1l2qnkpz]Awesome, just make sure you post your application for the RPA ^^. We're currently doing a few things to make it more active and the likes. Hope you like it here at RPG. Make sure to read over the rules and the guide. Just PM me if you need help with anything at all ^^.[/center:1l2qnkpz
outbound_links.txt:21725: [4950] => www.roleplaygateway.com/rules-t1369.html:3b7p06rx][img:3b7p06rx]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3b7p06rx][/url:3b7p06rx][/left:3b7p06rx][right:3b7p06rx][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3b7p06rx][img:3b7p06rx]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3b7p06rx][/url:3b7p06rx][/right:3b7p06rx][center:3b7p06rx
outbound_links.txt:21731: [4956] => www.roleplaygateway.com/rules-t1369.html:tm5r4nm2][img:tm5r4nm2]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:tm5r4nm2][/url:tm5r4nm2][/left:tm5r4nm2][right:tm5r4nm2][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:tm5r4nm2][img:tm5r4nm2]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:tm5r4nm2][/url:tm5r4nm2][/right:tm5r4nm2][center:tm5r4nm2]Welcome to RPG. Hope you find the RPA to your liking, and to much competition ^^. Make sure to check out the rules and the likes before really getting to posting. If you need any help please PM me. I'm nearly always on ^^.[/center:tm5r4nm2
outbound_links.txt:21752: [4977] => www.roleplaygateway.com/rules-t1369.html:29n8xm7u][img:29n8xm7u]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:29n8xm7u][/url:29n8xm7u][/left:29n8xm7u][right:29n8xm7u][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:29n8xm7u][img:29n8xm7u]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:29n8xm7u][/url:29n8xm7u][/right:29n8xm7u][center:29n8xm7u]Quite at hard worker <<; All of that. Welcome to RPG. PM me if you need help of any sort. Please be sure to check out the rules and the guide as well. We are glad to have yah here ^^.[/center:29n8xm7u
outbound_links.txt:21762: [4987] => www.roleplaygateway.com/rules-t1369.html:bkmcvcyt][img:bkmcvcyt]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:bkmcvcyt][/url:bkmcvcyt][/left:bkmcvcyt][right:bkmcvcyt][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:bkmcvcyt][img:bkmcvcyt]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:bkmcvcyt][/url:bkmcvcyt][/right:bkmcvcyt][center:bkmcvcyt]Welcome to RPG. Hope yeh like it here ^^. If you need any help just PM me! Please check out the rules and the guide before you really delve into the site.[/center:bkmcvcyt
outbound_links.txt:21773: [4998] => www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html[/url:3hnlc5zn
outbound_links.txt:21780: [5005] => www.roleplaygateway.com/rules-t1369.html:3jl7dp2c][img:3jl7dp2c]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:3jl7dp2c][/url:3jl7dp2c][/left:3jl7dp2c][right:3jl7dp2c][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3jl7dp2c][img:3jl7dp2c]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:3jl7dp2c][/url:3jl7dp2c][/right:3jl7dp2c][center:3jl7dp2c
outbound_links.txt:21792: [5017] => www.roleplaygateway.com/rules-t1369.html:uia4r7zn][img:uia4r7zn]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:uia4r7zn][/url:uia4r7zn][/left:uia4r7zn][right:uia4r7zn][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:uia4r7zn][img:uia4r7zn]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:uia4r7zn][/url:uia4r7zn][/right:uia4r7zn][center:uia4r7zn
outbound_links.txt:21799: [5024] => www.roleplaygateway.com/rules-t1369.html:2xrpwv2v][img:2xrpwv2v]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2xrpwv2v][/url:2xrpwv2v][/left:2xrpwv2v][right:2xrpwv2v][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2xrpwv2v][img:2xrpwv2v]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2xrpwv2v][/url:2xrpwv2v][/right:2xrpwv2v][center:2xrpwv2v
outbound_links.txt:21806: [5031] => www.roleplaygateway.com/rules-t1369.html:1lgp129p][img:1lgp129p]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1lgp129p][/url:1lgp129p][/left:1lgp129p][right:1lgp129p][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1lgp129p][img:1lgp129p]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1lgp129p][/url:1lgp129p][/right:1lgp129p][center:1lgp129p
outbound_links.txt:21809: [5034] => www.roleplaygateway.com/rules-t1369.html:170pl7u5][img:170pl7u5]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:170pl7u5][/url:170pl7u5][/left:170pl7u5][right:170pl7u5][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:170pl7u5][img:170pl7u5]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:170pl7u5][/url:170pl7u5][/right:170pl7u5][center:170pl7u5
outbound_links.txt:21823: [5048] => www.roleplaygateway.com/rules-t1369.html:1t9lq7c2][img:1t9lq7c2]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1t9lq7c2][/url:1t9lq7c2][/left:1t9lq7c2][right:1t9lq7c2][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1t9lq7c2][img:1t9lq7c2]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1t9lq7c2][/url:1t9lq7c2][/right:1t9lq7c2][center:1t9lq7c2
outbound_links.txt:21825: [5050] => www.roleplaygateway.com/rules-t1369.html:1nvqspaz][img:1nvqspaz]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1nvqspaz][/url:1nvqspaz][/left:1nvqspaz][right:1nvqspaz][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1nvqspaz][img:1nvqspaz]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1nvqspaz][/url:1nvqspaz][/right:1nvqspaz][center:1nvqspaz]Welcome to RPG ^^. I am thinking of running some sort of warhammer 40kish roleplay soon, I dunno though. Anyways, if you need help of any sort, feel free to PM me. Make sure to check out the rules and guide as well ^^.[/center:1nvqspaz
outbound_links.txt:21827: [5052] => www.roleplaygateway.com/rules-t1369.html:19xho79k][img:19xho79k]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:19xho79k][/url:19xho79k][/left:19xho79k][right:19xho79k][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:19xho79k][img:19xho79k]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:19xho79k][/url:19xho79k][/right:19xho79k][center:19xho79k
outbound_links.txt:21829: [5054] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3flnunil]the RPGateway rules[/url:3flnunil] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3flnunil]RPGateway Manual[/url:3flnunil
outbound_links.txt:21841: [5066] => www.roleplaygateway.com/rules-t1369.html:y6nvzc9m][img:y6nvzc9m]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:y6nvzc9m][/url:y6nvzc9m][/left:y6nvzc9m][right:y6nvzc9m][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:y6nvzc9m][img:y6nvzc9m]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:y6nvzc9m][/url:y6nvzc9m][/right:y6nvzc9m][center:y6nvzc9m]Meh, we like all sorts of roleplaying styles here ^^. The more the better. Either way, welcome to RPG. Please read over the rules and the guide though. If you need help with anything at all, or you just want someone to chat with, feel free to private message me ^^. I hope you like it here?[/center:y6nvzc9m
outbound_links.txt:21844: [5069] => www.roleplaygateway.com/rules-t1369.html:3dwe69zd][img:3dwe69zd]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3dwe69zd][/url:3dwe69zd][/left:3dwe69zd][right:3dwe69zd][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3dwe69zd][img:3dwe69zd]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3dwe69zd][/url:3dwe69zd][/right:3dwe69zd][center:3dwe69zd
outbound_links.txt:21860: [5085] => www.roleplaygateway.com/rules-t1369.html:42x0n6y4][img:42x0n6y4]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:42x0n6y4][/url:42x0n6y4][/left:42x0n6y4][right:42x0n6y4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:42x0n6y4][img:42x0n6y4]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:42x0n6y4][/url:42x0n6y4][/right:42x0n6y4][center:42x0n6y4
outbound_links.txt:21866: [5091] => www.roleplaygateway.com/rules-t1369.html:1p8f9j7l][img:1p8f9j7l]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1p8f9j7l][/url:1p8f9j7l][/left:1p8f9j7l][right:1p8f9j7l][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1p8f9j7l][img:1p8f9j7l]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1p8f9j7l][/url:1p8f9j7l][/right:1p8f9j7l][center:1p8f9j7l
outbound_links.txt:21874: [5099] => www.roleplaygateway.com/rules-t1369.html:2u5f08jm][img:2u5f08jm]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2u5f08jm][/url:2u5f08jm][/left:2u5f08jm][right:2u5f08jm][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2u5f08jm][img:2u5f08jm]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2u5f08jm][/url:2u5f08jm][/right:2u5f08jm][center:2u5f08jm
outbound_links.txt:21876: [5101] => www.roleplaygateway.com/rules-t1369.html:5r79fi8j][img:5r79fi8j]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:5r79fi8j][/url:5r79fi8j][/left:5r79fi8j][right:5r79fi8j][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:5r79fi8j][img:5r79fi8j]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:5r79fi8j][/url:5r79fi8j][/right:5r79fi8j][center:5r79fi8j
outbound_links.txt:21882: [5107] => www.roleplaygateway.com/rules-t1369.html:24yeu1cv][img:24yeu1cv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:24yeu1cv][/url:24yeu1cv][/left:24yeu1cv][right:24yeu1cv][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:24yeu1cv][img:24yeu1cv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:24yeu1cv][/url:24yeu1cv][/right:24yeu1cv][center:24yeu1cv
outbound_links.txt:21884: [5109] => www.roleplaygateway.com/rules-t1369.html:hl96q28r][img:hl96q28r]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:hl96q28r][/url:hl96q28r][/left:hl96q28r][right:hl96q28r][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:hl96q28r][img:hl96q28r]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:hl96q28r][/url:hl96q28r][/right:hl96q28r][center:hl96q28r
outbound_links.txt:21896: [5121] => www.roleplaygateway.com/rules-t1369.html:2rqt0flz][img:2rqt0flz]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2rqt0flz][/url:2rqt0flz][/left:2rqt0flz][right:2rqt0flz][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2rqt0flz][img:2rqt0flz]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2rqt0flz][/url:2rqt0flz][/right:2rqt0flz][center:2rqt0flz
outbound_links.txt:21898: [5123] => www.roleplaygateway.com/rules-t1369.html:1669rh0l][img:1669rh0l]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1669rh0l][/url:1669rh0l][/left:1669rh0l][right:1669rh0l][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1669rh0l][img:1669rh0l]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1669rh0l][/url:1669rh0l][/right:1669rh0l][center:1669rh0l
outbound_links.txt:21904: [5129] => www.roleplaygateway.com/rules-t1369.html:3c81iygd][img:3c81iygd]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3c81iygd][/url:3c81iygd][/left:3c81iygd][right:3c81iygd][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3c81iygd][img:3c81iygd]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3c81iygd][/url:3c81iygd][/right:3c81iygd][center:3c81iygd
outbound_links.txt:21908: [5133] => www.roleplaygateway.com/rules-t1369.html:200qe2d4][img:200qe2d4]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:200qe2d4][/url:200qe2d4][/left:200qe2d4][right:200qe2d4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:200qe2d4][img:200qe2d4]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:200qe2d4][/url:200qe2d4][/right:200qe2d4][center:200qe2d4
outbound_links.txt:21922: [5147] => www.roleplaygateway.com/rules-t1369.html:2bgaiskw][img:2bgaiskw]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2bgaiskw][/url:2bgaiskw][/left:2bgaiskw][right:2bgaiskw][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2bgaiskw][img:2bgaiskw]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2bgaiskw][/url:2bgaiskw][/right:2bgaiskw][center:2bgaiskw
outbound_links.txt:21924: [5149] => www.roleplaygateway.com/rules-t1369.html:178j3fsv][img:178j3fsv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:178j3fsv][/url:178j3fsv][/left:178j3fsv][right:178j3fsv][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:178j3fsv][img:178j3fsv]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:178j3fsv][/url:178j3fsv][/right:178j3fsv][center:178j3fsv]Wecome to The RoleplayGateway! If you have any questions feel free to PM me! You can PM me with wuestions, comments, concerns, or just to chat! You can PM anyone with a blue name with troubles and they will help you with whatever you need! Enjoy your stay![/center:178j3fsv
outbound_links.txt:21933: [5158] => www.roleplaygateway.com/rules-t1369.html:1zg2hbv3][img:1zg2hbv3]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1zg2hbv3][/url:1zg2hbv3][/left:1zg2hbv3][right:1zg2hbv3][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1zg2hbv3][img:1zg2hbv3]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1zg2hbv3][/url:1zg2hbv3][/right:1zg2hbv3][center:1zg2hbv3
outbound_links.txt:21936: [5161] => www.roleplaygateway.com/rules-t1369.html:t0roh57l][img:t0roh57l]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:t0roh57l][/url:t0roh57l][/left:t0roh57l][right:t0roh57l][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:t0roh57l][img:t0roh57l]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:t0roh57l][/url:t0roh57l][/right:t0roh57l][center:t0roh57l
outbound_links.txt:21939: [5164] => www.roleplaygateway.com/rules-t1369.html:2arabqjt][img:2arabqjt]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2arabqjt][/url:2arabqjt][/left:2arabqjt][right:2arabqjt][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2arabqjt][img:2arabqjt]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2arabqjt][/url:2arabqjt][/right:2arabqjt][center:2arabqjt
outbound_links.txt:21959: [5184] => www.roleplaygateway.com/rules-t1369.html:njnj7z9o][img:njnj7z9o]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:njnj7z9o][/url:njnj7z9o][/left:njnj7z9o][right:njnj7z9o][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:njnj7z9o][img:njnj7z9o]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:njnj7z9o][/url:njnj7z9o][/right:njnj7z9o][center:njnj7z9o
outbound_links.txt:21986: [5211] => www.roleplaygateway.com/rules-t1369.html:1tzacmeo][img:1tzacmeo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1tzacmeo][/url:1tzacmeo][/left:1tzacmeo][right:1tzacmeo][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1tzacmeo][img:1tzacmeo]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1tzacmeo][/url:1tzacmeo][/right:1tzacmeo][center:1tzacmeo
outbound_links.txt:21988: [5213] => www.roleplaygateway.com/rules-t1369.html:1h2vvovd][img:1h2vvovd]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:1h2vvovd][/url:1h2vvovd][/left:1h2vvovd][right:1h2vvovd][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1h2vvovd][img:1h2vvovd]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:1h2vvovd][/url:1h2vvovd][/right:1h2vvovd][center:1h2vvovd
outbound_links.txt:21990: [5215] => www.roleplaygateway.com/rules-t1369.html:7aoj27l4][img:7aoj27l4]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:7aoj27l4][/url:7aoj27l4][/left:7aoj27l4][right:7aoj27l4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:7aoj27l4][img:7aoj27l4]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:7aoj27l4][/url:7aoj27l4][/right:7aoj27l4][center:7aoj27l4
outbound_links.txt:21992: [5217] => www.roleplaygateway.com/rules-t1369.html:r6jn7s2d][img:r6jn7s2d]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:r6jn7s2d][/url:r6jn7s2d][/left:r6jn7s2d][right:r6jn7s2d][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:r6jn7s2d][img:r6jn7s2d]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:r6jn7s2d][/url:r6jn7s2d][/right:r6jn7s2d][center:r6jn7s2d
outbound_links.txt:21994: [5219] => www.roleplaygateway.com/rules-t1369.html:2ijb2c4p][img:2ijb2c4p]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/rules2.png[/img:2ijb2c4p][/url:2ijb2c4p][/left:2ijb2c4p][right:2ijb2c4p][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2ijb2c4p][img:2ijb2c4p]http://i229.photobucket.com/albums/ee98/adventamp/RPGw/ug2.png[/img:2ijb2c4p][/url:2ijb2c4p][/right:2ijb2c4p][center:2ijb2c4p
outbound_links.txt:22034: [5259] => www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3427yds8]user manual[/url:3427yds8] and our [url=http://www.roleplaygateway.com/rules-t1369.html:3427yds8]rules[/url:3427yds8
outbound_links.txt:22037: [5262] => www.roleplaygateway.com/rules-t1369.html:lr5uhw5y]rules[/url:lr5uhw5y] and [url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:lr5uhw5y]user manual.[/url:lr5uhw5y
outbound_links.txt:22047: [5272] => www.roleplaygateway.com/rules-t1369.html:192lsfnn][img:192lsfnn]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:192lsfnn][/url:192lsfnn][/left:192lsfnn][right:192lsfnn][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:192lsfnn][img:192lsfnn]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:192lsfnn][/url:192lsfnn][/right:192lsfnn][center:192lsfnn
outbound_links.txt:22049: [5274] => www.roleplaygateway.com/rules-t1369.html:s4bxvgj9][img:s4bxvgj9]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:s4bxvgj9][/url:s4bxvgj9][/left:s4bxvgj9][right:s4bxvgj9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:s4bxvgj9][img:s4bxvgj9]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:s4bxvgj9][/url:s4bxvgj9][/right:s4bxvgj9][center:s4bxvgj9
outbound_links.txt:22083: [5308] => www.roleplaygateway.com/rules-t1369.html:m0iteufj]rules[/url:m0iteufj] and [url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:m0iteufj]user manual.[/url:m0iteufj
outbound_links.txt:22085: [5310] => www.roleplaygateway.com/rules-t1369.html:5junpf7v]our rules[/url:5junpf7v] and the [url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:5junpf7v]user manual.[/url:5junpf7v
outbound_links.txt:22087: [5312] => www.roleplaygateway.com/rules-t1369.html:2abefb0y][img:2abefb0y]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2abefb0y][/url:2abefb0y][/left:2abefb0y][right:2abefb0y][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2abefb0y][img:2abefb0y]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2abefb0y][/url:2abefb0y][/right:2abefb0y][center:2abefb0y
outbound_links.txt:22089: [5314] => www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:v74lg4o6]user manual[/url:v74lg4o6] and our [url=http://www.roleplaygateway.com/rules-t1369.html:v74lg4o6]rules.[/url:v74lg4o6
outbound_links.txt:22091: [5316] => www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1a8z1a4v]user manual[/url:1a8z1a4v] and our [url=http://www.roleplaygateway.com/rules-t1369.html:1a8z1a4v]rules.[/url:1a8z1a4v
outbound_links.txt:22095: [5320] => www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3dop3jdm]user manual[/url:3dop3jdm] and [url=http://www.roleplaygateway.com/rules-t1369.html:3dop3jdm]rules.[/url:3dop3jdm
outbound_links.txt:22120: [5345] => p-images.veoh.com/image.out?imageId=user-Anime-Pirate20.jpg&version=4:24pfue8s](Minus the Eyepatch of course)[/url:24pfue8s
outbound_links.txt:22139: [5364] => www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2eelyrr1]user manual[/url:2eelyrr1] and our [url=http://www.roleplaygateway.com/rules-t1369.html:2eelyrr1]rules.[/url:2eelyrr1
outbound_links.txt:22141: [5366] => www.roleplaygateway.com/rules-t1369.html:giwtxbqm]rules[/url:giwtxbqm] and the [url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:giwtxbqm]user manual.[/url:giwtxbqm
outbound_links.txt:22143: [5368] => www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:wkq8opik]user manual,[/url:wkq8opik] [url=http://www.roleplaygateway.com/rules-t1369.html:wkq8opik]our rules,[/url:wkq8opik
outbound_links.txt:22189: [5414] => www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:16d92m6y]user manual[/url:16d92m6y
outbound_links.txt:22219: [5444] => www.roleplaygateway.com/rules-t1369.html:3rf6054y]the rules[/url:3rf6054y] and the [url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3rf6054y]user manual.[/url:3rf6054y
outbound_links.txt:22276: [5501] => www.roleplaygateway.com/rules-t1369.html:2i4zmfp9][img:2i4zmfp9]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2i4zmfp9][/url:2i4zmfp9][/left:2i4zmfp9][right:2i4zmfp9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2i4zmfp9][img:2i4zmfp9]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2i4zmfp9][/url:2i4zmfp9][/right:2i4zmfp9][center:2i4zmfp9][color=#0000FF:2i4zmfp9
outbound_links.txt:22283: [5508] => www.roleplaygateway.com/rules-t1369.html:1pfakxbn][img:1pfakxbn]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1pfakxbn][/url:1pfakxbn][/left:1pfakxbn][right:1pfakxbn][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1pfakxbn][img:1pfakxbn]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1pfakxbn][/url:1pfakxbn][/right:1pfakxbn][center:1pfakxbn][color=#0000FF:1pfakxbn
outbound_links.txt:22296: [5521] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:30ateuor]user manual.[/url:30ateuor
outbound_links.txt:22319: [5544] => www.roleplaygateway.com/rules-t1369.html:12894zx1][img:12894zx1]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:12894zx1][/url:12894zx1][/left:12894zx1][right:12894zx1][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:12894zx1][img:12894zx1]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:12894zx1][/url:12894zx1][/right:12894zx1][center:12894zx1][color=#0000FF:12894zx1
outbound_links.txt:22323: [5548] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3cs6lkwj]rules[/url:3cs6lkwj] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3cs6lkwj]user manual.[/url:3cs6lkwj
outbound_links.txt:22325: [5550] => www.roleplaygateway.com/rules-t1369.html:3ni08sbk][img:3ni08sbk]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3ni08sbk][/url:3ni08sbk][/left:3ni08sbk][right:3ni08sbk][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3ni08sbk][img:3ni08sbk]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3ni08sbk][/url:3ni08sbk][/right:3ni08sbk][center:3ni08sbk][color=#0000FF:3ni08sbk
outbound_links.txt:22330: [5555] => www.roleplaygateway.com/rules-t1369.html:4x02fl01][img:4x02fl01]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:4x02fl01][/url:4x02fl01][/left:4x02fl01][right:4x02fl01][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:4x02fl01][img:4x02fl01]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:4x02fl01][/url:4x02fl01][/right:4x02fl01][center:4x02fl01][color=#0000FF:4x02fl01
outbound_links.txt:22353: [5578] => www.roleplaygateway.com/rules-t1369.html:i57vd5gf][img:i57vd5gf]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:i57vd5gf][/url:i57vd5gf][/left:i57vd5gf][right:i57vd5gf][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:i57vd5gf][img:i57vd5gf]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:i57vd5gf][/url:i57vd5gf][/right:i57vd5gf][center:i57vd5gf][color=#0000FF:i57vd5gf
outbound_links.txt:22399: [5624] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1955ss5j]rules[/url:1955ss5j] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1955ss5j]user manual.[/url:1955ss5j
outbound_links.txt:22401: [5626] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:170q52z0]user manual[/url:170q52z0] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:170q52z0]rules.[/url:170q52z0
outbound_links.txt:22459: [5684] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:tu0l555a]the user manual[/url:tu0l555a] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:tu0l555a]rules[/url:tu0l555a
outbound_links.txt:22472: [5697] => www.roleplaygateway.com/rules-t1369.html:329kl6fr][img:329kl6fr]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:329kl6fr][/url:329kl6fr][/left:329kl6fr][right:329kl6fr][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:329kl6fr][img:329kl6fr]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:329kl6fr][/url:329kl6fr][/right:329kl6fr][center:329kl6fr][color=#0000FF:329kl6fr
outbound_links.txt:22480: [5705] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:2esf9k82]user manual[/url:2esf9k82] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2esf9k82]rules.[/url:2esf9k82
outbound_links.txt:22501: [5726] => www.roleplaygateway.com/rules-t1369.html:30foyh93][img:30foyh93]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:30foyh93][/url:30foyh93][/left:30foyh93][right:30foyh93][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:30foyh93][img:30foyh93]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:30foyh93][/url:30foyh93][/right:30foyh93][center:30foyh93][color=#0000FF:30foyh93
outbound_links.txt:22510: [5735] => www.roleplaygateway.com/rules-t1369.html:p5qfs66h][img:p5qfs66h]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:p5qfs66h][/url:p5qfs66h][/left:p5qfs66h][right:p5qfs66h][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:p5qfs66h][img:p5qfs66h]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:p5qfs66h][/url:p5qfs66h][/right:p5qfs66h][center:p5qfs66h][color=#0000FF:p5qfs66h
outbound_links.txt:22520: [5745] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:wp1k2483]RPG User Manual[/url:wp1k2483]. Or if you feel that your 1337 roleplayin' skillz could do with a little tuning up, why not pop by the [url=http://www.roleplaygateway.com/role-play-academy-f125.html:wp1k2483]RP Academy[/url:wp1k2483
outbound_links.txt:22621: [5846] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:2pz5jbni]the user manual[/url:2pz5jbni] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2pz5jbni]rules.[/url:2pz5jbni
outbound_links.txt:22623: [5848] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:348zeh1b]rules[/url:348zeh1b] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:348zeh1b]the user manual.[/url:348zeh1b
outbound_links.txt:22625: [5850] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:2g1b95ym]user manual[/url:2g1b95ym] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2g1b95ym]rules.[/url:2g1b95ym
outbound_links.txt:22631: [5856] => www.roleplaygateway.com/rules-t1369.html:7x04sutp][img:7x04sutp]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:7x04sutp][/url:7x04sutp][/left:7x04sutp][right:7x04sutp][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:7x04sutp][img:7x04sutp]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:7x04sutp][/url:7x04sutp][/right:7x04sutp][center:7x04sutp]I'm so happy that you found your way here! Let me know if there's anything that I can help you with, or if you wanna RP sometime. Have fun!!!![/center:7x04sutp
outbound_links.txt:22655: [5880] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:gk8xanfe]rules[/url:gk8xanfe] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:gk8xanfe]user manual.[/url:gk8xanfe
outbound_links.txt:22674: [5899] => www.roleplaygateway.com/rules-t1369.html:3uu5fmq9][img:3uu5fmq9]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3uu5fmq9][/url:3uu5fmq9][/left:3uu5fmq9][right:3uu5fmq9][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3uu5fmq9][img:3uu5fmq9]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3uu5fmq9][/url:3uu5fmq9][/right:3uu5fmq9][center:3uu5fmq9]WELCOME TO THE GATEWAY!!![/center:3uu5fmq9
outbound_links.txt:22755: [5980] => www.roleplaygateway.com/rules-t1369.html:ejiobcu7][img:ejiobcu7]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:ejiobcu7][/url:ejiobcu7][/left:ejiobcu7][right:ejiobcu7][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:ejiobcu7][img:ejiobcu7]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:ejiobcu7][/url:ejiobcu7][/right:ejiobcu7][center:ejiobcu7][color=#0000FF:ejiobcu7
outbound_links.txt:22780: [6005] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3ptq7bfb]the rulebook[/url:3ptq7bfb] and our [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3ptq7bfb]user manual.[/url:3ptq7bfb
outbound_links.txt:22903: [6128] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3gv10qfk]the rules[/url:3gv10qfk] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3gv10qfk]user manual.[/url:3gv10qfk
outbound_links.txt:22908: [6133] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:1iu82s2z]user manual[/url:1iu82s2z] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1iu82s2z]rules.[/url:1iu82s2z
outbound_links.txt:22915: [6140] => www.roleplaygateway.com/rules-t1369.html:36ko8dxj][img:36ko8dxj]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:36ko8dxj][/url:36ko8dxj][/left:36ko8dxj][right:36ko8dxj][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:36ko8dxj][img:36ko8dxj]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:36ko8dxj][/url:36ko8dxj][/right:36ko8dxj][center:36ko8dxj][color=#0000FF:36ko8dxj
outbound_links.txt:22984: [6209] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:2t5e3f6l]user manual[/url:2t5e3f6l] Also, be sure to read [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2t5e3f6l]the rules.[/url:2t5e3f6l
outbound_links.txt:22990: [6215] => www.roleplaygateway.com/rules-t1369.html:2601jz0k][img:2601jz0k]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2601jz0k][/url:2601jz0k][/left:2601jz0k][right:2601jz0k][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2601jz0k][img:2601jz0k]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2601jz0k][/url:2601jz0k][/right:2601jz0k][center:2601jz0k][color=#0000FF:2601jz0k
outbound_links.txt:22992: [6217] => www.roleplaygateway.com/rules-t1369.html:zp3rxwu2][img:zp3rxwu2]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:zp3rxwu2][/url:zp3rxwu2][/left:zp3rxwu2][right:zp3rxwu2][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:zp3rxwu2][img:zp3rxwu2]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:zp3rxwu2][/url:zp3rxwu2][/right:zp3rxwu2][center:zp3rxwu2][color=#0000FF:zp3rxwu2
outbound_links.txt:23010: [6235] => www.roleplaygateway.com/rules-t1369.html:738f6erq][img:738f6erq]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:738f6erq][/url:738f6erq][/left:738f6erq][right:738f6erq][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:738f6erq][img:738f6erq]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:738f6erq][/url:738f6erq][/right:738f6erq][center:738f6erq][color=#0000FF:738f6erq
outbound_links.txt:23013: [6238] => www.roleplaygateway.com/rules-t1369.html:2osge21e][img:2osge21e]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2osge21e][/url:2osge21e][/left:2osge21e][right:2osge21e][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2osge21e][img:2osge21e]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2osge21e][/url:2osge21e][/right:2osge21e][center:2osge21e][color=#0000FF:2osge21e
outbound_links.txt:23029: [6254] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:oi1ob1uw]the rules[/url:oi1ob1uw] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:oi1ob1uw]user manual.[/url:oi1ob1uw
outbound_links.txt:23050: [6275] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:mq6sm1of]the rules[/url:mq6sm1of] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:mq6sm1of]user manual.[/url:mq6sm1of
outbound_links.txt:23076: [6301] => www.roleplaygateway.com/rules-t1369.html:kwsxnews][img:kwsxnews]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:kwsxnews][/url:kwsxnews][/left:kwsxnews][right:kwsxnews][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:kwsxnews][img:kwsxnews]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:kwsxnews][/url:kwsxnews][/right:kwsxnews][center:kwsxnews][color=#0000FF:kwsxnews
outbound_links.txt:23096: [6321] => www.roleplaygateway.com/rules-t1369.html:1sh2orwy][img:1sh2orwy]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1sh2orwy][/url:1sh2orwy][/left:1sh2orwy][right:1sh2orwy][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1sh2orwy][img:1sh2orwy]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1sh2orwy][/url:1sh2orwy][/right:1sh2orwy][center:1sh2orwy][color=#0000FF:1sh2orwy
outbound_links.txt:23217: [6442] => www.roleplaygateway.com/rules-t1369.html:2mpmma3k][img:2mpmma3k]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2mpmma3k][/url:2mpmma3k][/left:2mpmma3k][right:2mpmma3k][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2mpmma3k][img:2mpmma3k]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2mpmma3k][/url:2mpmma3k][/right:2mpmma3k][center:2mpmma3k]Hey there! Nice of you to join us! If you have any questions, let us know... We're more than happy to help you out with anything and everything. While you're around, make sure you check out our [url=http://www.roleplaygateway.com/chat:2mpmma3k]chat[/url:2mpmma3k] if you have time.[/center:2mpmma3k
outbound_links.txt:23403: [6628] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:l1ja84v7]the rules[/url:l1ja84v7] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:l1ja84v7]user manual.[/url:l1ja84v7
outbound_links.txt:23460: [6685] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:3q8b1m77]user manual[/url:3q8b1m77] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3q8b1m77]rules.[/url:3q8b1m77] If you have any questions about anything to do with this site (including, but not limited to, ware teh rp @), feel free to ask here, in the [url=http://www.roleplaygateway.com/help-f11.html:3q8b1m77]help forum[/url:3q8b1m77
outbound_links.txt:23461: [6686] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:13avoh2n]user manual[/url:13avoh2n] or the [url=http://www.roleplaygateway.com/help-f11.html:13avoh2n]help forum[/url:13avoh2n
outbound_links.txt:23463: [6688] => www.roleplaygateway.com/help-f11.html:3luj0v1m]help forum[/url:3luj0v1m] and/or [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3luj0v1m]user manual.[/url:3luj0v1m
outbound_links.txt:23473: [6698] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:157jk1b2]user manual[/url:157jk1b2] or the [url=http://www.roleplaygateway.com/help-f11.html:157jk1b2]help forum[/url:157jk1b2
outbound_links.txt:23493: [6718] => www.roleplaygateway.com/main-lobby-f1.html:36nvl581]the rules.[/url:36nvl581] You may also want to check out [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:36nvl581]the user manual.[/url:36nvl581
outbound_links.txt:23534: [6759] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:28b2a8ps]the rules[/url:28b2a8ps] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:28b2a8ps]user manual.[/url:28b2a8ps
outbound_links.txt:23587: [6812] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:3j5fmwag]the user manual[/url:3j5fmwag] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3j5fmwag]rules.[/url:3j5fmwag
outbound_links.txt:23589: [6814] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html[/url:uoog3b32] rules and perhaps the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:uoog3b32]user manual.[/url:uoog3b32
outbound_links.txt:23591: [6816] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:3i5ddzxw]the user manual[/url:3i5ddzxw], and will definately want to read our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3i5ddzxw]rules.[/url:3i5ddzxw
outbound_links.txt:23596: [6821] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2kxbib64]the rules[/url:2kxbib64] and perhaps the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2kxbib64]user manual.[/url:2kxbib64] If you have any questions feel free to ask here, in the [url=http://www.roleplaygateway.com/help-f11.html:2kxbib64]help forum[/url:2kxbib64
outbound_links.txt:23598: [6823] => www.roleplaygateway.com/rules-t1369.html:gawvmjzp][img:gawvmjzp]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:gawvmjzp][/url:gawvmjzp][/left:gawvmjzp][right:gawvmjzp][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:gawvmjzp][img:gawvmjzp]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:gawvmjzp][/url:gawvmjzp][/right:gawvmjzp][center:gawvmjzp][color=#0000FF:gawvmjzp
outbound_links.txt:23601: [6826] => www.roleplaygateway.com/rules-t1369.html:2gg0u2vk][img:2gg0u2vk]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:2gg0u2vk][/url:2gg0u2vk][/left:2gg0u2vk][right:2gg0u2vk][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:2gg0u2vk][img:2gg0u2vk]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:2gg0u2vk][/url:2gg0u2vk][/right:2gg0u2vk][center:2gg0u2vk][color=#0000FF:2gg0u2vk
outbound_links.txt:23634: [6859] => www.roleplaygateway.com/rules-t1369.html:1nr85bl1][img:1nr85bl1]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:1nr85bl1][/url:1nr85bl1][/left:1nr85bl1][right:1nr85bl1][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:1nr85bl1][img:1nr85bl1]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:1nr85bl1][/url:1nr85bl1][/right:1nr85bl1][center:1nr85bl1
outbound_links.txt:23659: [6884] => www.roleplaygateway.com/rules-t1369.html:3bmbrdjw][img:3bmbrdjw]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3bmbrdjw][/url:3bmbrdjw][/left:3bmbrdjw][right:3bmbrdjw][url=http://www.roleplaygateway.com/the-RPG-user-manual-all-users-must-read-t7.html:3bmbrdjw][img:3bmbrdjw]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3bmbrdjw][/url:3bmbrdjw][/right:3bmbrdjw][center:3bmbrdjw
outbound_links.txt:23763: [6988] => www.roleplaygateway.com/rules-t1369.html:3bpbohjr][img:3bpbohjr]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3bpbohjr][/url:3bpbohjr][/left:3bpbohjr][right:3bpbohjr][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3bpbohjr][img:3bpbohjr]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3bpbohjr][/url:3bpbohjr][/right:3bpbohjr][center:3bpbohjr]Hey there Cass!! It's great to see that you are giving us a chance! There are a few things that we ask that you do... First, click the rules button in my post to read what we have laid down as ground rules... Also, check out the guide to RPGW, which will give you a general idea what we're about. A lot of that will be un-needed information, since you already know hwo to put a post together... [quite beautifully done, by the way...
outbound_links.txt:23765: [6990] => www.roleplaygateway.com/rules-t1369.html:ct5225i4][img:ct5225i4]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:ct5225i4][/url:ct5225i4][/left:ct5225i4][right:ct5225i4][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:ct5225i4][img:ct5225i4]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:ct5225i4][/url:ct5225i4][/right:ct5225i4][center:ct5225i4
outbound_links.txt:23767: [6992] => www.roleplaygateway.com/rules-t1369.html:29znlxug][img:29znlxug]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:29znlxug][/url:29znlxug][/left:29znlxug][right:29znlxug][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:29znlxug][img:29znlxug]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:29znlxug][/url:29znlxug][/right:29znlxug][center:29znlxug
outbound_links.txt:23816: [7041] => www.roleplaygateway.com/rules-t1369.html:3p7vwu05][img:3p7vwu05]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3p7vwu05][/url:3p7vwu05][/left:3p7vwu05][right:3p7vwu05][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3p7vwu05][img:3p7vwu05]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3p7vwu05][/url:3p7vwu05][/right:3p7vwu05][center:3p7vwu05][color=#FF0000:3p7vwu05
outbound_links.txt:23833: [7058] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3isz8pba]The Rules[/url:3isz8pba], and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3isz8pba]All Relevant Documentation[/url:3isz8pba
outbound_links.txt:23843: [7068] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:yjhg820t]our rules[/url:yjhg820t] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:yjhg820t]user manual.[/url:yjhg820t
outbound_links.txt:23860: [7085] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2wr6b6bm]the rules[/url:2wr6b6bm] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2wr6b6bm]user manual.[/url:2wr6b6bm
outbound_links.txt:23869: [7094] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:mr8pd3iv]the rules[/url:mr8pd3iv] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:mr8pd3iv]user manual.[/url:mr8pd3iv
outbound_links.txt:23872: [7097] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:92vybima]the user manual[/url:92vybima] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:92vybima]rules.[/url:92vybima
outbound_links.txt:23900: [7125] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:20r3t2k6]the RPGateway rules[/url:20r3t2k6] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:20r3t2k6]RPGateway Manual[/url:20r3t2k6
outbound_links.txt:23909: [7134] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:28m4vvz0]rules[/url:28m4vvz0] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:28m4vvz0]user manual.[/url:28m4vvz0
outbound_links.txt:23970: [7195] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:8judfsg2]the user manual (very important if you are new to forum role-playing)[/url:8judfsg2] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:8judfsg2]the rules.[/url:8judfsg2
outbound_links.txt:24121: [7346] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:4v8m85i2]the RPGateway rules[/url:4v8m85i2] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:4v8m85i2]RPGateway Manual[/url:4v8m85i2
outbound_links.txt:24134: [7359] => www.roleplaygateway.com/rules-t1369.html:3lpihm3l][img:3lpihm3l]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3lpihm3l][/url:3lpihm3l][/left:3lpihm3l][right:3lpihm3l][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3lpihm3l][img:3lpihm3l]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3lpihm3l][/url:3lpihm3l][/right:3lpihm3l][center:3lpihm3l][color=#FF0000:3lpihm3l
outbound_links.txt:24189: [7414] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3pu8nqwb]the rules[/url:3pu8nqwb] and mayhap the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3pu8nqwb]user manual.[/url:3pu8nqwb
outbound_links.txt:24191: [7416] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3enof4pj]the rules[/url:3enof4pj] and mayhap the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3enof4pj]user manual.[/url:3enof4pj
outbound_links.txt:24193: [7418] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:1rg0wcv0]the user manual[/url:1rg0wcv0] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1rg0wcv0]our rules.[/url:1rg0wcv0
outbound_links.txt:24195: [7420] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:sgf172ou]the user manual[/url:sgf172ou] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:sgf172ou]our rules.[/url:sgf172ou
outbound_links.txt:24197: [7422] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3cgyyygp]the rules[/url:3cgyyygp] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3cgyyygp]user manual.[/url:3cgyyygp
outbound_links.txt:24199: [7424] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:3oyp925r]the user manual[/url:3oyp925r] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3oyp925r]rules.[/url:3oyp925r
outbound_links.txt:24202: [7427] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:2zypd5z3]the user manual[/url:2zypd5z3] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2zypd5z3]rules.[/url:2zypd5z3
outbound_links.txt:24208: [7433] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1hyfrmrb]Rules[/url:1hyfrmrb] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1hyfrmrb]User Manual[/url:1hyfrmrb
outbound_links.txt:24228: [7453] => p-images.veoh.com/thumb/w277/user-vampire-girl10117.gif[/img:3ewies2p
outbound_links.txt:24235: [7460] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:a84i85a0]the RPGateway rules[/url:a84i85a0] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:a84i85a0]RPGateway Manual[/url:a84i85a0
outbound_links.txt:24240: [7465] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2h91c1xd]Rules[/url:2h91c1xd] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2h91c1xd]User Manual[/url:2h91c1xd
outbound_links.txt:24242: [7467] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3ff9wtci]Rules[/url:3ff9wtci] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3ff9wtci]User Manual[/url:3ff9wtci
outbound_links.txt:24243: [7468] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:6wus085z]Rules[/url:6wus085z] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:6wus085z]User Manual[/url:6wus085z
outbound_links.txt:24310: [7535] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:9gvmtwyr]our rules[/url:9gvmtwyr] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:9gvmtwyr]user manual.[/url:9gvmtwyr
outbound_links.txt:24324: [7549] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3ag6tyrh]our rules[/url:3ag6tyrh] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3ag6tyrh]the user manual.[/url:3ag6tyrh
outbound_links.txt:24437: [7662] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3cfw78aj]the RPGateway rules[/url:3cfw78aj] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3cfw78aj]RPGateway Manual[/url:3cfw78aj
outbound_links.txt:24442: [7667] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2la0kayv]the RPGateway rules[/url:2la0kayv] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2la0kayv]RPGateway Manual[/url:2la0kayv
outbound_links.txt:24450: [7675] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3iprdikv]the RPGateway rules[/url:3iprdikv] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3iprdikv]RPGateway Manual[/url:3iprdikv
outbound_links.txt:24473: [7698] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:cmwtkm5t]our rules[/url:cmwtkm5t] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:cmwtkm5t]user manual.[/url:cmwtkm5t
outbound_links.txt:24475: [7700] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:1ryvrwa8]user manual.[/url:1ryvrwa8] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1ryvrwa8]rules.[/url:1ryvrwa8
outbound_links.txt:24477: [7702] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1ijfxam7]rules[/url:1ijfxam7] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1ijfxam7]user manual.[/url:1ijfxam7
outbound_links.txt:24589: [7814] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:fre5s5b6]our rules[/url:fre5s5b6] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:fre5s5b6]user manual.[/url:fre5s5b6
outbound_links.txt:24640: [7865] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2cg9rh4z]Read the Rules[/url:2cg9rh4z] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2cg9rh4z]Read All Relevant Documentation before Posting[/url:2cg9rh4z
outbound_links.txt:24641: [7866] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:m3rus5vn]Read all rules[/url:m3rus5vn] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:m3rus5vn]Relevant Documentation[/url:m3rus5vn
outbound_links.txt:24651: [7876] => www.roleplaygateway.com/rules-t1369.html:3kes804y][img:3kes804y]http://i229.photobucket.com/albums/ee98/adventamp/rules.png[/img:3kes804y][/url:3kes804y][/left:3kes804y][right:3kes804y][url=http://www.roleplaygateway.com/the-rpgw-user-manual-all-users-must-read-t7.html:3kes804y][img:3kes804y]http://i229.photobucket.com/albums/ee98/adventamp/guide.png[/img:3kes804y][/url:3kes804y][/right:3kes804y][center:3kes804y]Nice to see you here! I hope that you find something that you fit in with! If you have any questions, feel free to ask any of the staff, we'd be more than happy to help you figure it out![/center:3kes804y
outbound_links.txt:24684: [7909] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:bofshyr8]Rules[/url:bofshyr8] to read over, as well as [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:bofshyr8]Relevant Documentation[/url:bofshyr8
outbound_links.txt:24686: [7911] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1vzpjg34]Rules,[/url:1vzpjg34] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1vzpjg34]Relevant Documentation[/url:1vzpjg34
outbound_links.txt:24688: [7913] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3m9a2mi5]Rules[/url:3m9a2mi5] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3m9a2mi5]Relevant Documentation[/url:3m9a2mi5
outbound_links.txt:24690: [7915] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1qf9xhy8]Reading all Rules[/url:1qf9xhy8] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1qf9xhy8]Relevant Documentation[/url:1qf9xhy8
outbound_links.txt:24692: [7917] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1p0tm2h9]Read the Rules[/url:1p0tm2h9], and all [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html
outbound_links.txt:24712: [7937] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:29nv96y2]rules[/url:29nv96y2] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:29nv96y2]user manual.[/url:29nv96y2
outbound_links.txt:24714: [7939] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:1e1mplfi]the user manual[/url:1e1mplfi] and [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1e1mplfi]our rules.[/url:1e1mplfi
outbound_links.txt:24716: [7941] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:tyyc8at4]our rules[/url:tyyc8at4] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:tyyc8at4]user manual.[/url:tyyc8at4
outbound_links.txt:24781: [8006] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1351msak]Read All Rules[/url:1351msak] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1351msak]Relevant Documentation![/url:1351msak
outbound_links.txt:24784: [8009] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2ieipry7]Read The Rules[/url:2ieipry7] And all [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2ieipry7]Relevant Documentation,[/url:2ieipry7
outbound_links.txt:24786: [8011] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:26koc9zb]Read the Rules[/url:26koc9zb] and all [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:26koc9zb]Relevant Documentation[/url:26koc9zb
outbound_links.txt:24790: [8015] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1bkqxvd0]Rules[/url:1bkqxvd0] And [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1bkqxvd0]The RPG Manual[/url:1bkqxvd0
outbound_links.txt:24792: [8017] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2a7mqz1e]Reading the Rules[/url:2a7mqz1e] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2a7mqz1e]General Manual[/url:2a7mqz1e
outbound_links.txt:24815: [8040] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2wvy4ao7]Read All Rules[/url:2wvy4ao7] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2wvy4ao7]Relevant Documentation[/url:2wvy4ao7
outbound_links.txt:24817: [8042] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1r6s8vfy]Read The Rules[/url:1r6s8vfy] And All [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1r6s8vfy]Manuals[/url:1r6s8vfy
outbound_links.txt:24819: [8044] => youtube.com/watch?v=VUVK-r6x1A0:2prsbtq9]King of Hearts[/url:2prsbtq9][/desc:2prsbtq9] and its Burning Grip tells me to greet you! [ic:2prsbtq9]Pumps up,[/ic:2prsbtq9] Take this, [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2prsbtq9]Our Rules.[/url:2prsbtq9] [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2prsbtq9]Our User Manual[/url:2prsbtq9] and All of My SUpport power! GREETING FINGAAA!" [ic:2prsbtq9]Greets Josh with his Burning Power[/ic:2prsbtq9
outbound_links.txt:24855: [8080] => youtube.com/watch?v=G5ZmWXnfecY:3qolt93t]THE SWORD THAT CLEAVES EVIL![/url:3qolt93t][/desc:3qolt93t] With this Great Blade, there is nothing I cannot WELCOME! [ic:3qolt93t]Jumps towards FiziKx[/ic:3qolt93t] WELCOMMEEE [/ic] Welcomes FiziKx with one slash[/ic] CHESTOOOOO! Now I'm part of the Dynamic General Support Staff, a team, dedicated to helping you with anything RPGateway related. Answer my Call via Private messages, Or Instant Message and I will help you as soon as possible. DO NOT FORGET! [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3qolt93t]READ THE RULES[/url:3qolt93t] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3qolt93t]And Manual[/url:3qolt93t
outbound_links.txt:24857: [8082] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1veddv3n]Read the Rules[/url:1veddv3n] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1veddv3n]Manual[/url:1veddv3n
outbound_links.txt:24860: [8085] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3j13w4zo]Read the Rules[/url:3j13w4zo], and then [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3j13w4zo]And the Manual[/url:3j13w4zo
outbound_links.txt:24864: [8089] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1tw4tvu0]Read the Rules,[/url:1tw4tvu0] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1tw4tvu0]All Documentation[/url:1tw4tvu0
outbound_links.txt:24887: [8112] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:18jdctkc]Read our Rules,[/url:18jdctkc] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:18jdctkc]The Manual[/url:18jdctkc
outbound_links.txt:24889: [8114] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1reenr5m]Read our Rules[/url:1reenr5m] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1reenr5m]Manual[/url:1reenr5m
outbound_links.txt:24891: [8116] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:9tne3v9o]the RPGateway rules[/url:9tne3v9o] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:9tne3v9o]RPGateway Manual[/url:9tne3v9o
outbound_links.txt:24894: [8119] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2ja44yh1]the RPGateway rules[/url:2ja44yh1] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2ja44yh1]RPGateway Manual[/url:2ja44yh1
outbound_links.txt:24917: [8142] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:v4dwp207]the RPGateway rules[/url:v4dwp207] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:v4dwp207]RPGateway Manual[/url:v4dwp207
outbound_links.txt:24919: [8144] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3gpk3lpg]the RPGateway rules[/url:3gpk3lpg] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3gpk3lpg]RPGateway Manual[/url:3gpk3lpg
outbound_links.txt:24921: [8146] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2ht52ue4]the RPGateway rules[/url:2ht52ue4] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2ht52ue4]RPGateway Manual[/url:2ht52ue4
outbound_links.txt:24923: [8148] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3o73pblw]the RPGateway rules[/url:3o73pblw] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3o73pblw]RPGateway Manual[/url:3o73pblw
outbound_links.txt:24925: [8150] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2cprxxuc]the RPGateway rules[/url:2cprxxuc] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2cprxxuc]RPGateway Manual[/url:2cprxxuc
outbound_links.txt:24928: [8153] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3l1atl35]the RPGateway rules[/url:3l1atl35] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3l1atl35]RPGateway Manual[/url:3l1atl35
outbound_links.txt:24929: [8154] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:8rzuzmee]the RPGateway rules[/url:8rzuzmee] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:8rzuzmee]RPGateway Manual[/url:8rzuzmee
outbound_links.txt:24931: [8156] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:tavavfv9]the RPGateway rules[/url:tavavfv9] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:tavavfv9]RPGateway Manual[/url:tavavfv9
outbound_links.txt:24933: [8158] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1rd5bf7v]the RPGateway rules[/url:1rd5bf7v] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1rd5bf7v]RPGateway Manual[/url:1rd5bf7v
outbound_links.txt:24935: [8160] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1znk6u7v]the RPGateway rules[/url:1znk6u7v] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1znk6u7v]RPGateway Manual[/url:1znk6u7v
outbound_links.txt:24964: [8189] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3av1qukz]our rules[/url:3av1qukz] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3av1qukz]user manual.[/url:3av1qukz
outbound_links.txt:24966: [8191] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3h0yunqh]the RPGateway rules[/url:3h0yunqh] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3h0yunqh]RPGateway Manual[/url:3h0yunqh
outbound_links.txt:24969: [8194] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1juqce09]our rules[/url:1juqce09] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1juqce09]user manual.[/url:1juqce09
outbound_links.txt:24982: [8207] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2p22o2qw]the RPGateway rules[/url:2p22o2qw] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2p22o2qw]RPGateway Manual[/url:2p22o2qw
outbound_links.txt:24984: [8209] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2ggaoeih]the RPGateway rules[/url:2ggaoeih] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2ggaoeih]RPGateway Manual[/url:2ggaoeih
outbound_links.txt:24994: [8219] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:302845sl]the RPGateway rules[/url:302845sl] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:302845sl]RPGateway Manual[/url:302845sl
outbound_links.txt:24997: [8222] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2j9u92dw]the RPGateway rules[/url:2j9u92dw] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2j9u92dw]RPGateway Manual[/url:2j9u92dw
outbound_links.txt:25027: [8252] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3t30bb5v]the RPGateway rules[/url:3t30bb5v] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3t30bb5v]RPGateway Manual[/url:3t30bb5v
outbound_links.txt:25030: [8255] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3kztoowc]the RPGateway rules[/url:3kztoowc] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3kztoowc]RPGateway Manual[/url:3kztoowc
outbound_links.txt:25036: [8261] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2fvs4pcq]our rules (we don't care if you do drugs ;p)[/url:2fvs4pcq] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2fvs4pcq]user manual.[/url:2fvs4pcq
outbound_links.txt:25074: [8299] => www.roleplaygateway.com/the-rpg-user-manual-t7.html:1zb0ieyh]the user manual[/url:1zb0ieyh] and our [url=http://www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1zb0ieyh]rules.[/url:1zb0ieyh
outbound_links.txt:25081: [8306] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:2awcxhr4]the RPGateway rules[/url:2awcxhr4] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:2awcxhr4]RPGateway Manual[/url:2awcxhr4
outbound_links.txt:25083: [8308] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:lpm56ic3]the RPGateway rules[/url:lpm56ic3] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:lpm56ic3]RPGateway Manual[/url:lpm56ic3
outbound_links.txt:25085: [8310] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1zocyzh9]the RPGateway rules[/url:1zocyzh9] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1zocyzh9]RPGateway Manual[/url:1zocyzh9
outbound_links.txt:25111: [8336] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:27a6w1zz]our rules[/url:27a6w1zz] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:27a6w1zz]user manual.[/url:27a6w1zz
outbound_links.txt:25112: [8337] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3gzqm5wl]the RPGateway rules[/url:3gzqm5wl] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3gzqm5wl]RPGateway Manual[/url:3gzqm5wl
outbound_links.txt:25114: [8339] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:246by45n]the RPGateway rules[/url:246by45n] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:246by45n]RPGateway Manual[/url:246by45n
outbound_links.txt:25116: [8341] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1zpf0pmf]the RPGateway rules[/url:1zpf0pmf] and the [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1zpf0pmf]RPGateway Manual[/url:1zpf0pmf
outbound_links.txt:25144: [8369] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:3amd8hco]Read the Rules[/url:3amd8hco] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:3amd8hco]The RPGateway User Manual[/url:3amd8hco
outbound_links.txt:25147: [8372] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1mk5htk6]Read the Rules[/url:1mk5htk6] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1mk5htk6]The RPGateway User Manual[/url:1mk5htk6
outbound_links.txt:25150: [8375] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:nu3s4fro]Read the Rules[/url:nu3s4fro] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:nu3s4fro]The RPGateway User Manual[/url:nu3s4fro
outbound_links.txt:25152: [8377] => www.roleplaygateway.com/the-official-roleplaygateway-rules-t1369.html:1hdmtis4]Read the Rules[/url:1hdmtis4] and [url=http://www.roleplaygateway.com/the-rpg-user-manual-t7.html:1hdmtis4]The RPGateway User Manual[/url:1hdmtis4
phpBBFolk.php:22:$user->session_begin();
phpBBFolk.php:23:$auth->acl($user->data);
phpBBFolk.php:24:$user->setup();
phpBBFolk.php:34: if($user->data['user_id'] == ANONYMOUS){
phpBBFolk.php:35: login_box('', $user->lang['ADD_TAGS_NOT_LOGGED']);
phpBBFolk.php:53: $message = sprintf($user->lang['PBF_ADD_TAGS_DONE'], $tag_outcome['added'], $tag_outcome['dups']) . '<br /><br />' . sprintf($user->lang['RETURN_TOPIC'], '<a href="' . $meta_info . '">', '</a>');
phpBBFolk.php:59: $message = $user->lang['PBF_ADD_TAGS_NO_TAGS'] . '<br /><br />' . sprintf($user->lang['RETURN_TOPIC'], '<a href="' . $meta_info . '">', '</a>');
phpBBFolk.php:81: page_header($user->lang['PBF_SEARCH_PAGE_TITLE']);
phpBBFolk.php:133: $u_mcp_queue = ($topic_unapproved || $posts_unapproved) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=queue&mode=' . (($topic_unapproved) ? 'approve_details' : 'unapproved_posts') . "&t=$topic_id", true, $user->session_id) : '';
phpBBFolk.php:143: 'FIRST_POST_TIME' => $user->format_date($row['topic_time']),
phpBBFolk.php:145: 'LAST_POST_TIME' => $user->format_date($row['topic_last_post_time']),
phpBBFolk.php:146: 'LAST_VIEW_TIME' => $user->format_date($row['topic_last_view_time']),
phpBBFolk.php:157: 'TOPIC_FOLDER_IMG' => $user->img($folder_img, $folder_alt),
phpBBFolk.php:158: 'TOPIC_FOLDER_IMG_SRC' => $user->img($folder_img, $folder_alt, false, '', 'src'),
phpBBFolk.php:159: 'TOPIC_FOLDER_IMG_ALT' => $user->lang[$folder_alt],
phpBBFolk.php:163: 'ATTACH_ICON_IMG' => ($auth->acl_get('u_download') && $auth->acl_get('f_download', $forum_id) && $row['topic_attachment']) ? $user->img('icon_topic_attach', $user->lang['TOTAL_ATTACHMENTS']) : '',
phpBBFolk.php:164: 'UNAPPROVED_IMG' => ($topic_unapproved || $posts_unapproved) ? $user->img('icon_topic_unapproved', ($topic_unapproved) ? 'TOPIC_UNAPPROVED' : 'POSTS_UNAPPROVED') : '',
phpBBFolk.php:184: 'U_MCP_REPORT' => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=reports&mode=reports&f=' . $forum_id . '&t=' . $topic_id, true, $user->session_id),
phpBBFolk.php:194: 'TOTAL_TOPICS' => (@$s_display_active) ? false : (($topics_count == 1) ? $user->lang['PBF_NUM_TOPIC'] : sprintf($user->lang['PBF_NUM_TOPICS'], $topics_count)),
phpBBFolk.php:201: page_header($user->lang['PBF_TAGS_RESULT_TITLE']);
phpBBFolk.php:211: $message = sprintf($user->lang['PBF_NO_RESULTS'], $search_tag) . '<br /><br />' . sprintf($user->lang['PBF_RETURN_TO_SEARCH'], '<a href="' . $meta_info . '">', '</a>');
posting.php:26:$user->session_begin();
posting.php:27:$auth->acl($user->data);
posting.php:91: $user->setup('posting');
posting.php:131: $user->setup('posting');
posting.php:143: $user->setup('posting');
posting.php:154:$user->setup(array('posting', 'mcp', 'viewtopic'), $post_data['forum_style']);
posting.php:171:if ($user->data['is_bot'])
posting.php:179: if ($user->data['user_id'] != ANONYMOUS)
posting.php:184: login_box('', $user->lang['LOGIN_EXPLAIN_POST']);
posting.php:220: if ($user->data['is_registered'] && $auth->acl_gets('f_edit', 'm_edit', $forum_id))
posting.php:227: if ($user->data['is_registered'] && $auth->acl_gets('f_delete', 'm_delete', $forum_id))
posting.php:238: if ($user->data['is_registered'])
posting.php:243: login_box('', $user->lang['LOGIN_EXPLAIN_' . strtoupper($mode)]);
posting.php:262: if ($user->data['user_id'] != $post_data['poster_id'])
posting.php:301: topic_bumper = " . $user->data['user_id'] . "
posting.php:309: WHERE user_id = " . $user->data['user_id'];
posting.php:321: $message = $user->lang['TOPIC_BUMPED'] . '<br /><br />' . sprintf($user->lang['VIEW_MESSAGE'], '<a href="' . $meta_url . '">', '</a>');
posting.php:322: $message .= '<br /><br />' . sprintf($user->lang['RETURN_FORUM'], '<a href="' . append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id) . '">', '</a>');
posting.php:339: $post_data['quote_username'] = (!empty($post_data['post_username'])) ? $post_data['post_username'] : $user->lang['GUEST'];
posting.php:381:$uninit = array('post_attachment' => 0, 'poster_id' => $user->data['user_id'], 'enable_magic_url' => 0, 'topic_status' => 0, 'topic_type' => POST_NORMAL, 'post_subject' => '', 'topic_title' => '', 'post_time' => 0, 'post_edit_reason' => '', 'notify_set' => 0);
posting.php:423: $post_data['enable_sig'] = ($config['allow_sig'] && $user->optionget('attachsig')) ? true: false;
posting.php:424: $post_data['enable_smilies'] = ($config['allow_smilies'] && $user->optionget('smilies')) ? true : false;
posting.php:425: $post_data['enable_bbcode'] = ($config['allow_bbcode'] && $user->optionget('bbcode')) ? true : false;
posting.php:432:if ($user->data['is_registered'] && $auth->acl_get('u_savedrafts') && ($mode == 'reply' || $mode == 'post' || $mode == 'quote'))
posting.php:436: WHERE user_id = ' . $user->data['user_id'] .
posting.php:452:if ($mode != 'post' && $config['allow_topic_notify'] && $user->data['is_registered'])
posting.php:457: AND user_id = ' . $user->data['user_id'];
posting.php:478:if ($save && $user->data['is_registered'] && $auth->acl_get('u_savedrafts') && ($mode == 'reply' || $mode == 'post' || $mode == 'quote'))
posting.php:489: 'user_id' => (int) $user->data['user_id'],
posting.php:502: $message = $user->lang['DRAFT_SAVED'] . '<br /><br />';
posting.php:503: $message .= ($mode != 'post') ? sprintf($user->lang['RETURN_TOPIC'], '<a href="' . $meta_info . '">', '</a>') . '<br /><br />' : '';
posting.php:504: $message .= sprintf($user->lang['RETURN_FORUM'], '<a href="' . append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id) . '">', '</a>');
posting.php:527: $error[] = $user->lang['EMPTY_SUBJECT'];
posting.php:532: $error[] = $user->lang['TOO_FEW_CHARS'];
posting.php:539:if ($draft_id && ($mode == 'reply' || $mode == 'quote' || $mode == 'post') && $user->data['is_registered'] && $auth->acl_get('u_savedrafts'))
posting.php:544: AND user_id = " . $user->data['user_id'];
posting.php:587: $post_data['enable_sig'] = (!$config['allow_sig']) ? false : ((isset($_POST['attach_sig']) && $user->data['is_registered']) ? true : false);
posting.php:589: if ($config['allow_topic_notify'] && $user->data['is_registered'])
posting.php:614: ((!$post_data['poll_last_vote'] && $post_data['poster_id'] == $user->data['user_id'] && $auth->acl_get('f_delete', $forum_id)) || $auth->acl_get('m_delete', $forum_id)))
posting.php:710: if (@$topic_last_poster_id == $user->data['user_id'] && $mode != 'edit') {
posting.php:746: if ($user->data['is_registered'])
posting.php:748: $last_post_time = $user->data['user_lastpost_time'];
posting.php:754: WHERE poster_ip = '" . $user->ip . "'
posting.php:766: $error[] = $user->lang['FLOOD_ERROR'];
posting.php:771: if (($post_data['username'] && !$user->data['is_registered']) || ($mode == 'edit' && $post_data['poster_id'] == ANONYMOUS && $post_data['username'] && $post_data['post_username'] && $post_data['post_username'] != $post_data['username']))
posting.php:777: $user->add_lang('ucp');
posting.php:778: $error[] = $user->lang[$result . '_USERNAME'];
posting.php:782: if ($config['enable_post_confirm'] && !$user->data['is_registered'] && in_array($mode, array('quote', 'post', 'reply')))
posting.php:790: AND session_id = '" . $db->sql_escape($user->session_id) . "'
posting.php:798: $error[] = $user->lang['CONFIRM_CODE_WRONG'];
posting.php:809: $error[] = $user->lang['FORM_INVALID'];
posting.php:815: $error[] = $user->lang['EMPTY_SUBJECT'];
posting.php:846: $message_parser->warn_msg[] = $user->lang['NO_DELETE_POLL_OPTIONS'];
posting.php:884: $error[] = $user->lang['CANNOT_POST_' . str_replace('F_', '', strtoupper($auth_option))];
posting.php:897: if (($dnsbl = $user->check_dnsbl('post')) !== false)
posting.php:899: $error[] = sprintf($user->lang['IP_BLACKLISTED'], $user->ip, $dnsbl[1]);
posting.php:964: $perm_lock_unlock = ($auth->acl_get('m_lock', $forum_id) || ($auth->acl_get('f_user_lock', $forum_id) && $user->data['is_registered'] && !empty($post_data['topic_poster']) && $user->data['user_id'] == $post_data['topic_poster'] && $post_data['topic_status'] == ITEM_UNLOCKED)) ? true : false;
posting.php:983: $user_lock = ($auth->acl_get('f_user_lock', $forum_id) && $user->data['is_registered'] && $user->data['user_id'] == $post_data['topic_poster']) ? 'USER_' : '';
posting.php:1018: 'post_edit_user' => ($mode == 'edit') ? $user->data['user_id'] : ((isset($post_data['post_edit_user'])) ? (int) $post_data['post_edit_user'] : 0),
posting.php:1023: 'poster_ip' => (isset($post_data['poster_ip'])) ? $post_data['poster_ip'] : $user->ip,
posting.php:1063: $message = ($mode == 'edit') ? $user->lang['POST_EDITED_MOD'] : $user->lang['POST_STORED_MOD'];
posting.php:1064: $message .= (($user->data['user_id'] == ANONYMOUS) ? '' : ' '. $user->lang['POST_APPROVAL_NOTIFY']);
posting.php:1071: $message = $user->lang[$message] . '<br /><br />' . sprintf($user->lang['VIEW_MESSAGE'], '<a href="' . $redirect_url . '">', '</a>');
posting.php:1074: $message .= '<br /><br />' . sprintf($user->lang['RETURN_FORUM'], '<a href="' . append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $data['forum_id']) . '">', '</a>');
posting.php:1088: $preview_signature = ($mode == 'edit') ? $post_data['user_sig'] : $user->data['user_sig'];
posting.php:1089: $preview_signature_uid = ($mode == 'edit') ? $post_data['user_sig_bbcode_uid'] : $user->data['user_sig_bbcode_uid'];
posting.php:1090: $preview_signature_bitfield = ($mode == 'edit') ? $post_data['user_sig_bbcode_bitfield'] : $user->data['user_sig_bbcode_bitfield'];
posting.php:1132: 'L_POLL_LENGTH' => ($post_data['poll_length']) ? sprintf($user->lang['POLL_RUN_TILL'], $user->format_date($poll_end)) : '',
posting.php:1133: 'L_MAX_VOTES' => ($post_data['poll_max_options'] == 1) ? $user->lang['MAX_OPTION_SELECT'] : sprintf($user->lang['MAX_OPTIONS_SELECT'], $post_data['poll_max_options']))
posting.php:1240:$bbcode_checked = (isset($post_data['enable_bbcode'])) ? !$post_data['enable_bbcode'] : (($config['allow_bbcode']) ? !$user->optionget('bbcode') : 1);
posting.php:1241:$smilies_checked = (isset($post_data['enable_smilies'])) ? !$post_data['enable_smilies'] : (($config['allow_smilies']) ? !$user->optionget('smilies') : 1);
posting.php:1248:$notify_set = ($mode != 'edit' && $config['allow_topic_notify'] && $user->data['is_registered'] && !$post_data['notify_set']) ? $user->data['user_notify'] : $post_data['notify_set'];
posting.php:1249:$notify_checked = (isset($notify)) ? $notify : (($mode == 'post') ? $user->data['user_notify'] : $notify_set);
posting.php:1252:$s_action = append_sid("{$phpbb_root_path}posting.$phpEx", "mode=$mode&f=$forum_id", true, $user->session_id);
posting.php:1259: $page_title = $user->lang['POST_TOPIC'];
posting.php:1264: $page_title = $user->lang['POST_REPLY'];
posting.php:1269: $page_title = $user->lang['EDIT_POST'];
posting.php:1279:if ($config['enable_post_confirm'] && !$user->data['is_registered'] && $solved_captcha === false && ($mode == 'post' || $mode == 'reply' || $mode == 'quote'))
posting.php:1283: WHERE session_id = '" . $db->sql_escape($user->session_id) . "'
posting.php:1289: $confirm_id = md5(unique_id($user->ip));
posting.php:1297: 'session_id' => (string) $user->session_id,
posting.php:1308: 'L_POST_CONFIRM_EXPLAIN' => sprintf($user->lang['POST_CONFIRM_EXPLAIN'], '<a href="mailto:' . htmlspecialchars($config['board_contact']) . '">', '</a>'),
posting.php:1332: 'L_ICON' => ($mode == 'reply' || $mode == 'quote' || ($mode == 'edit' && $post_id != $post_data['topic_first_post_id'])) ? $user->lang['POST_ICON'] : $user->lang['TOPIC_ICON'],
posting.php:1333: 'L_MESSAGE_BODY_EXPLAIN' => (intval($config['max_post_chars'])) ? sprintf($user->lang['MESSAGE_BODY_EXPLAIN'], intval($config['max_post_chars'])) : '',
posting.php:1342: 'BBCODE_STATUS' => ($bbcode_status) ? sprintf($user->lang['BBCODE_IS_ON'], '<a href="' . append_sid("{$phpbb_root_path}faq.$phpEx", 'mode=bbcode') . '">', '</a>') : sprintf($user->lang['BBCODE_IS_OFF'], '<a href="' . append_sid("{$phpbb_root_path}faq.$phpEx", 'mode=bbcode') . '">', '</a>'),
posting.php:1343: 'IMG_STATUS' => ($img_status) ? $user->lang['IMAGES_ARE_ON'] : $user->lang['IMAGES_ARE_OFF'],
posting.php:1344: 'FLASH_STATUS' => ($flash_status) ? $user->lang['FLASH_IS_ON'] : $user->lang['FLASH_IS_OFF'],
posting.php:1345: 'SMILIES_STATUS' => ($smilies_status) ? $user->lang['SMILIES_ARE_ON'] : $user->lang['SMILIES_ARE_OFF'],
posting.php:1346: 'URL_STATUS' => ($bbcode_status && $url_status) ? $user->lang['URL_IS_ON'] : $user->lang['URL_IS_OFF'],
posting.php:1347: 'MINI_POST_IMG' => $user->img('icon_post_target', $user->lang['POST']),
posting.php:1348: 'POST_DATE' => ($post_data['post_time']) ? $user->format_date($post_data['post_time']) : '',
posting.php:1361: 'S_DISPLAY_USERNAME' => (!$user->data['is_registered'] || ($mode == 'edit' && $post_data['poster_id'] == ANONYMOUS)) ? true : false,
posting.php:1363: 'S_DELETE_ALLOWED' => ($mode == 'edit' && (($post_id == $post_data['topic_last_post_id'] && $post_data['poster_id'] == $user->data['user_id'] && $auth->acl_get('f_delete', $forum_id)) || $auth->acl_get('m_delete', $forum_id))) ? true : false,
posting.php:1368: 'S_SIG_ALLOWED' => ($auth->acl_get('f_sigs', $forum_id) && $config['allow_sig'] && $user->data['is_registered']) ? true : false,
posting.php:1370: 'S_NOTIFY_ALLOWED' => (!$user->data['is_registered'] || ($mode == 'edit' && $user->data['user_id'] != $post_data['poster_id']) || !$config['allow_topic_notify'] || !$config['email_enable']) ? false : true,
posting.php:1372: 'S_LOCK_TOPIC_ALLOWED' => (($mode == 'edit' || $mode == 'reply' || $mode == 'quote') && ($auth->acl_get('m_lock', $forum_id) || ($auth->acl_get('f_user_lock', $forum_id) && $user->data['is_registered'] && !empty($post_data['topic_poster']) && $user->data['user_id'] == $post_data['topic_poster'] && $post_data['topic_status'] == ITEM_UNLOCKED))) ? true : false,
posting.php:1379: 'S_SAVE_ALLOWED' => ($auth->acl_get('u_savedrafts') && $user->data['is_registered'] && $mode != 'edit') ? true : false,
posting.php:1380: 'S_HAS_DRAFTS' => ($auth->acl_get('u_savedrafts') && $user->data['is_registered'] && $post_data['drafts']) ? true : false,
posting.php:1402: 'S_POLL_DELETE' => ($mode == 'edit' && sizeof($post_data['poll_options']) && ((!$post_data['poll_last_vote'] && $post_data['poster_id'] == $user->data['user_id'] && $auth->acl_get('f_delete', $forum_id)) || $auth->acl_get('m_delete', $forum_id))),
posting.php:1405: 'L_POLL_OPTIONS_EXPLAIN' => sprintf($user->lang['POLL_OPTIONS_' . (($mode == 'edit') ? 'EDIT_' : '') . 'EXPLAIN'], $config['max_poll_options']),
posting.php:1449: ($forum_style) ? $user->setup('posting', $forum_style) : $user->setup('posting');
posting.php:1451: page_header($user->lang['PROGRESS_BAR']);
posting.php:1458: 'PROGRESS_BAR' => $user->img('upload_bar', $user->lang['UPLOAD_IN_PROGRESS']))
posting.php:1473: if ($auth->acl_get('m_delete', $forum_id) || ($post_data['poster_id'] == $user->data['user_id'] && $user->data['is_registered'] && $auth->acl_get('f_delete', $forum_id) && $post_id == $post_data['topic_last_post_id']))
posting.php:1506: $message = $user->lang['POST_DELETED'];
posting.php:1513: $message = $user->lang['POST_DELETED'] . '<br /><br />' . sprintf($user->lang['RETURN_TOPIC'], '<a href="' . $meta_info . '">', '</a>');
posting.php:1517: $message .= '<br /><br />' . sprintf($user->lang['RETURN_FORUM'], '<a href="' . append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id) . '">', '</a>');
posting.php:1527: if ($post_data['poster_id'] != $user->data['user_id'] && $auth->acl_get('f_delete', $forum_id))
posting.php:1532: if ($post_data['poster_id'] == $user->data['user_id'] && $auth->acl_get('f_delete', $forum_id) && $post_id != $post_data['topic_last_post_id'])
prs.php:21:$user->session_begin();
prs.php:22:$auth->acl($user->data);
prs.php:35:$user->setup('mods/prs');
prs.php:38:if ($user->data['user_id'] == ANONYMOUS)
prs.php:40: login_box('', $user->lang['LOGIN_VIEWFORUM']);
prs.php:56: 'user_id' => $user->data['user_id'],
prs.php:70: $message = $user->lang[$message];
prs.php:76: $message .= '<br /><br />' . sprintf($user->lang['PRS_VIEW_MESSAGE'], '<a href="' . $redirect_url . '">', '</a>');
prs.php:77: $message .= '<br /><br />' . sprintf($user->lang['RETURN_FORUM'], '<a href="' . append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $data['forum_id']) . '">', '</a>');