d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Shafts Everything And Anything > Pc Gaming Related Thread
Prev16076086096106111017Next
Add Reply New Topic New Poll
Member
Posts: 6,556
Joined: May 19 2009
Gold: 0.00
Jan 20 2012 02:13am
Quote (Grief_exe @ Jan 20 2012 03:12am)
Its Tera Japanese version, not out in the US yet.

Really fun game, its an action oriented MMO. Instead of the WoW or ToR style of gameplay, its more like God of War.
So fights are more fun and dynamic, and pvp is fucking awesome.

Has some other cool stuff, like you can control whole territories in the game and collect taxes. Huge guild v guild and realm v realm pvp.
There still is the holy trinity, but since its skill based 5x dps can take down the hardest dungeons in the game without getting hit.


How did you get it? me want.
Member
Posts: 10,237
Joined: Mar 10 2008
Gold: 3,107.96
Jan 20 2012 02:37am
Quote (Flut @ Jan 20 2012 02:13am)
How did you get it? me want.


Its a process. I'm gonna type a thread up on it tomorrow. You have to go through a proxy, change your system language to Japanese, beat a Japanese capture, all this shit lol.

Check out some vids, the gameplay is awesome.
When you start dodging/blocking and then chaining together attacks, its awesome.

The aesthetic isn't that great, too much asian. But the game is actually really gorgeous.





This post was edited by Grief_exe on Jan 20 2012 02:38am
Member
Posts: 6,556
Joined: May 19 2009
Gold: 0.00
Jan 20 2012 02:38am
Quote (Grief_exe @ Jan 20 2012 03:37am)
Its a process. I'm gonna type a thread up on it tomorrow.

Check out some vids, the gameplay is awesome.

The aesthetic isn't that great, too much asian. But the game is actually really gorgeous.

http://i.imgur.com/hkO85.jpg


PM me when you feel like typing it.
Member
Posts: 13,728
Joined: Jul 11 2007
Gold: 0.00
Jan 20 2012 08:16am
Quote (Flut @ Jan 20 2012 02:38am)
PM me when you feel like typing it.


this this this this
Member
Posts: 28,150
Joined: Aug 23 2007
Gold: 1,100.00
Member
Posts: 50,343
Joined: Apr 3 2008
Gold: 0.00
Jan 20 2012 01:28pm
Member
Posts: 13,630
Joined: Dec 4 2009
Gold: 0.00
Jan 20 2012 01:30pm
Lol wtf
Member
Posts: 50,343
Joined: Apr 3 2008
Gold: 0.00
Jan 20 2012 02:11pm
Member
Posts: 28,150
Joined: Aug 23 2007
Gold: 1,100.00
Jan 20 2012 10:06pm
where the user blocker.

reformatted my desktop.
Member
Posts: 19,472
Joined: Jun 20 2010
Gold: 310.01
Jan 20 2012 10:14pm
Quote (GEZodiac @ Jan 20 2012 10:06pm)
where the user blocker.

reformatted my desktop.


tampermonkey +

Code
// ==UserScript==
// @name          blah2k6's d2jsp post blocker
// @description   Hides posts from a defined list of users
// @namespace   d2jsp.postblocker
// @include       http://forums.d2jsp.org/topic.php?t=*&f=*
// @include   http://forums.d2jsp.org/topic.php?t=*
// @include   http://forums.d2jsp.org/guild.php?t=*
// @include   http://forums.d2jsp.org/post.php
// ==/UserScript==

function addToBlockList(username)
{
var strList = GM_getValue("blocklist", "");
if(strList == "") GM_setValue("blocklist", username + ";");
else
{
 GM_setValue("blocklist", strList + username + ";");
 window.location.reload();
}
}

function removeFromBlockList(username)
{
var strList = GM_getValue("blocklist", "");
var users = strList.split(";");
for(var i=0; i<users.length; i++)
{
 if(users[i] == username) users.splice(i, 1);

}

strList = users.join(";");
GM_setValue("blocklist", strList);
window.location.reload();
}

function isInBlockList(username)
{
var strList = GM_getValue("blocklist", "");
var users = strList.split(";");
var retval = false;
for(var i=0; i<users.length; i++)
{
 if(users[i] == username) retval = true;

}
return retval;
}

function getElementsByClassName(classname, par){
  var a=[];
  var re = new RegExp('\\b' + classname + '\\b');
  var els = par.getElementsByTagName("*");
  for(var i=0,j=els.length; i<j; i++){
     if(re.test(els[i].className)){
        a.push(els[i]);
     }
  }
  return a;
}

function showPost(div, username, postID, fr, ftb, frContent, ftbContent, isPreview)
{
if(frContent.indexOf("Hide Post") == -1) fr.innerHTML = '<a href="javascript:void(0)" id="h' + postID + '">Hide Post</a>'

+

frContent;
else fr.innerHTML = frContent;
ftb.innerHTML = ftbContent;
document.getElementById('h' + postID).addEventListener('click', function(){ createHTML(div, username, postID, fr, ftb, isPreview)

}, true);
}

function createHTML(div, username, postID, fr, ftb, isPreview)
{
var br = document.createElement('BR');
var holder = document.createElement('B');
var frSave = fr.innerHTML;
var ftbSave = ftb.innerHTML;

if(isInBlockList(username))
{    
 fr.innerHTML = '<a href="javascript:void(0)" id="s' + postID + '">Show Post</a><a href="javascript:scroll(0,0)">Top</a>';
 if(isPreview == true) ftb.innerHTML = '<div class="foot ce ta"><b>Posts by this user are blocked.</div>';
 else ftb.innerHTML = '<div class="foot ce ta"><b>Posts by this user are blocked. <a href="" id="ub' + postID +

'">Unblock</a></div>';
 ftb.innerHTML += '<div class="desc bc1"></div>';
}
else
{
 if(isPreview == false)
 {
  var colorBL = GM_getValue("blockLinkColor", "");
  holder.innerHTML += '<a href="" id="b' + postID + '"><font color="' + colorBL + '">Block Posts</font></a>';
  var beforeEle = div.getElementsByTagName('DIV')[0];
  div.insertBefore(holder,beforeEle);
  div.insertBefore(br,beforeEle);
 }
}

if(isPreview == false)
{
 if(document.getElementById('b' + postID) != null) document.getElementById('b' + postID).addEventListener('click',

function(){

addToBlockList(username) }, true);
 else
 {
  document.getElementById('ub' + postID).addEventListener('click', function(){ removeFromBlockList(username) },

true);
  document.getElementById('s' + postID).addEventListener('click', function(){ showPost(div, username, postID, fr,

ftb, frSave, ftbSave)

}, true);
 }
}
else document.getElementById('s' + postID).addEventListener('click', function(){ showPost(div, username, postID, fr, ftb, frSave,

ftbSave, isPreview)

}, true);
}

function hideQuotes()
{
var name,idx;
var quoteInfo = getElementsByClassName('quote1', document);
var quoteContent = getElementsByClassName('quote2', document);
for(var i=0;i<quoteInfo.length;i++)
{
 idx = quoteInfo[i].innerHTML.indexOf('@');
 name = quoteInfo[i].innerHTML.substring(7, idx - 1);
 if(isInBlockList(name))
 {
  quoteContent[i].innerHTML = '<b><font color="red">Posts by this user are blocked.</font></b>';

 }
}
}

function loadPage()
{
   if(GM_getValue("blockLinkColor", "") == "")
{
 GM_setValue("blockLinkColor", "");  
}
hideQuotes();
var dl = document.getElementsByTagName('DL');
var fr = getElementsByClassName('fR', document);
var bc1 = getElementsByClassName('bc1',document);
var dt = document.getElementsByTagName('DT');
var ftb = getElementsByClassName('ftb', document);
var forms = document.getElementsByTagName('form');
var isPoll = false;
var isPreview = false;
var name,postID,strDT,strName,strPostID,dlOffset,dtOffset,bc1Offset,frOffset, ftbOffset;
dlOffset = 0;
dtOffset = 0;
bc1Offset = 0;
frOffset = 1;
ftbOffset = 0;




if(window.location.href.indexOf('post.php') != -1)
{
 isPreview = true;
 dtOffset+=2;
 dlOffset+=2;
 frOffset = 0;
}
else
{

 for(var i=0; i<forms.length; i++)
 {
  if(forms[i].action.indexOf('index.php?act=Poll') != -1) isPoll = true;
 }
 if(isPoll == true || isPreview == true)
 {
  dtOffset++;
  dlOffset++;  
 }
}
 

for(var i=0;i<dl.length;i++)
{

 strDT = dt[i + dtOffset].firstChild;
 postID = strDT.name;

 if(strDT.innerHTML.indexOf('<') == 0)
 {
  strDT = strDT.firstChild;
 }

 
 strName = strDT.innerHTML;
 
 var idx = strName.indexOf('<');
 if(idx != -1)
 {
  name = strName.substring(0,idx)
 }
 else
 {
  name = strName;
 }
 
 name = name.replace(/ /gi,'');
 
 createHTML(bc1[i + bc1Offset],name,postID, fr[i + frOffset], ftb[i + ftbOffset], isPreview);  

}

}

loadPage();
Go Back To Computers & IT Topic List
Prev16076086096106111017Next
Add Reply New Topic New Poll