Welcome Guest ( Log In | Register )

67 Pages V « < 62 63 64 65 66 > »   
Closed TopicStart new topic
> Ctrl + V, Paste whatever is in your clipboard and post without editing.

 
post Apr 13 2015, 15:10
Post #1261
lizard777



Veteran Poster
********
Group: Members
Posts: 2,987
Joined: 14-August 13
Level 444 (Godslayer)


It is the dawn of a new day!
Reflecting on your journey so far, you find that you are a little wiser.
You gain 10,138,031 EXP!
You gain 205 Credits
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 15:13
Post #1262
qazzy5



Veteran Poster
********
Group: Members
Posts: 2,791
Joined: 2-April 11
Level 472 (Godslayer)


[cheezburger.com] http://cheezburger.com/8476041984
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 15:20
Post #1263
changefly



Veteran Poster
********
Group: Members
Posts: 4,450
Joined: 11-September 11
Level 188 (Lord)


It is the dawn of a new day!
Reflecting on your journey so far, you find that you are a little wiser.
You gain 15,275 EXP!
You gain 308 Credits
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 16:39
Post #1264
Azusa Hiiragi



心菜ちゃん大好き
*********
Group: Gold Star Club
Posts: 7,215
Joined: 16-January 11
Level 490 (Godslayer)


It is the dawn of a new day!
Reflecting on your journey so far, you find that you are a little wiser.
You gain 21,943,154 EXP!
You gain 226 Credits and 1 Hath
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 16:42
Post #1265
Retadin19



Regular Poster
******
Group: Members
Posts: 878
Joined: 17-November 13
Level 500 (Dovahkiin)


player->flNowPP = player->flBasePP;
player->flActionSpeed = 5.2f;
player->flMoveSpeed2 = 5.2f;
player->flJmpAbility = 65.0f;
player->flWeight = 25.0f;
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 16:44
Post #1266
CrusaderEsper



Veteran Poster
********
Group: Members
Posts: 3,834
Joined: 27-February 09
Level 122 (Lord)


[www.curse.com] http://www.curse.com/addons/wow/hansgar_and_franzok_assist
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 16:45
Post #1267
Muffinmans



Casual Poster
***
Group: Members
Posts: 106
Joined: 26-February 15
Level 130 (Ascended)


[phys.org] http://phys.org/news/2015-04-probabilistic...-thousands.html
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 17:00
Post #1268
nanimoshiranai



Casual Poster
***
Group: Members
Posts: 208
Joined: 13-April 12
Level 348 (Godslayer)


/**/
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 17:16
Post #1269
Habato



Lurker
Group: Recruits
Posts: 5
Joined: 11-April 15


It is the dawn of a new day!
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 17:39
Post #1270
pinciofloppy



Active Poster
*******
Group: Members
Posts: 1,297
Joined: 24-July 12
Level 335 (Dovahkiin)


It is the dawn of a new day!
Reflecting on your journey so far, you find that you are a little wiser.
You gain 129,185,155 EXP!
You gain 234 Credits and 1 Hath
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 18:15
Post #1271
setsuna11



土御門夜光
****
Group: Members
Posts: 387
Joined: 14-December 09
Level 305 (Godslayer)


It is the dawn of a new day!
Reflecting on your journey so far, you find that you are a little wiser.
You gain 7,681,432 EXP!
You gain 297 Credits
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 18:26
Post #1272
CX~DeribuRa



Finished: ShinKoihime Musou ~Moeshouden~
********
Group: Members
Posts: 4,990
Joined: 1-January 12
Level 370 (Godslayer)


It is the dawn of a new day!
Reflecting on your journey so far, you find that you are a little wiser.
You gain 3,403,726 EXP!
You gain 287 Credits
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 18:28
Post #1273
shinpan



Casual Poster
****
Group: Members
Posts: 322
Joined: 4-July 13
Level 258 (Destined)


It is the dawn of a new day!
Reflecting on your journey so far, you find that you are a little wiser.
You gain 880,296 EXP!
You gain 241 Credits and 1 Hath
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 18:36
Post #1274
Haibato



Lurker
Group: Recruits
Posts: 5
Joined: 13-April 15


It is the dawn of a new day!

This post has been edited by Haibato: Apr 13 2015, 20:08
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 18:38
Post #1275
GamerNovel



Support All The Hentai!!!!
****
Group: Gold Star Club
Posts: 276
Joined: 7-July 14
Level 461 (Godslayer)


<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateArticlesTable extends Migration {

/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('articles', function(Blueprint $table)
{
$table->increments('id');
$table->string('title');
$table->integer('user_id')->unsigned();
$table->text('body');
$table->timestamps();
$table->timestamp('published_at');

$table->foreign('user_id')
->references('id')
->on('users')
->onDelete('cascade');

});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('articles');
}

}
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 19:15
Post #1276
Gasior



Anti-social suicide (during treatment)
********
Group: Members
Posts: 2,667
Joined: 20-October 10
Level 477 (Godslayer)


The Punisher Wolverine Colossus
Blade Human Torch
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 19:18
Post #1277
afriedchicken



Newcomer
*
Group: Members
Posts: 21
Joined: 12-April 15
Level 11 (Novice)


One day the truth will come out
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 19:21
Post #1278
H.M. Murdock



Mass Financier of the Revolution
*******
Group: Members
Posts: 1,442
Joined: 10-December 07
Level 488 (Godslayer)


Comic Shitsurakuten Vol. 46 - 2015-04
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 19:35
Post #1279
Crazy Sheep



Casual Poster
****
Group: Members
Posts: 489
Joined: 25-May 12
Level 166 (Ascended)


It is the dawn of a new day!
Reflecting on your journey so far, you find that you are a little wiser.
You gain 10,867 EXP!
You gain 383 Credits
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 13 2015, 22:02
Post #1280
Brickster



Active Poster
*******
Group: Members
Posts: 1,222
Joined: 12-March 09
Level 356 (Godslayer)


Items and Crafting
Talk about items and crafting here.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


67 Pages V « < 62 63 64 65 66 > » 
Closed TopicStart new topic
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members:

 


Lo-Fi Version Time is now: 12th April 2025 - 01:59