Welcome to Assassin's Creed Wiki! Log in and join the community.

User talk:War Clown

From the Assassin's Creed Wiki
Revision as of 06:19, 7 May 2011 by imported>War Clown (→‎Laughed my ass off)
Jump to navigation Jump to search

Template:UserTalkHeader

Messages

You've pressed "1". State your business.

Omegaplib

War, Omega said you interviewd him sometime ago but there's still no report on the apprentice initiative about the outcome of the talk. Please update it. -- D. Cello 22:47, May 4, 2011 (UTC)

Ban Hammer

You've pressed "2". Identify the criminal and state his charges.

IRC

You've pressed "3". Leave a note.

Stuff

I saw Assassin's Creed Brotherhood Diary (http://www.youtube.com/watch?v=pjPT7oC2il0) And when you get to skip through 2.20min, you see a mission in front the pantheon that I have not found anywhere in the game, But you can clearly see that it is a gameplay. Does anyone know how I can play this mission or how it is that I can not? By the way: I have Assassins Creed Brotherhood Codex Edition

Please reply soon

Sign your posts. Its from a dev diary, some stuff from there wasn't seen in game. Most likely the one you've been saying is cut from the game. And that's your answer. --WarClown Frequency: 149.94 13:22, April 27, 2011 (UTC)

No title

Hello War Clown.

Sorry for talking to you knowing that you surely hate me.

But, Rayne is out, and I don't understand why do I need to talk with him.

I am afraid too, talking with Rayne or with Cello. They will bann me as soon as they see me.

I know this is public.

But, just talk with them, please. Promise is Promise.

Do as you see fit, 19Iguy 15:58, April 27, 2011 (UTC)

I'm sorry, but I can't be reasoned with. I sold my sanity for some cake yesterday. Talk to either Cello or Rayne, I'm sure they're more reasonable than I am. --WarClown Frequency: 149.94 16:05, April 27, 2011 (UTC)
Thank you for responding... And-a... Sorry for being stupid all that time. 19Iguy 16:15, April 27, 2011 (UTC)
Hello again,,, It's to late... I am banned, AGAIN! I DID WANT TO CHANGE, I PROMISSED. Roma didn't try to hear me. Im sorry, please. :'((
Then go explain to him! I didn't do anything! --WarClown Frequency: 149.94 16:28, April 27, 2011 (UTC)


I know... But am I banned forever! what will it do if I am banned forever...


It's not youre fault... I'm so pissed off right now! >: ((

God damn it, will you just keep away from me?! I'm not your freaking caretaker damn it! Another post from you here and I'll make sure you're banned from this place too! --WarClown Frequency: 149.94 05:45, April 28, 2011 (UTC)


Just sad...... :(

Could you help me with this?

http://assassinscreed.wikia.com/wiki/Assassin%27s_Creed_II_Achievement_Guide

The Reaper 03:20, May 5, 2011 (UTC)

RE: Page set up

Yo bro, whats the flow, how you go....ing? XD Anyway those pages you requested have been set up here and here. Cheers! --The Green LionTalk 13:45, May 5, 2011 (UTC)

Auto refresh feature

To be added in MediaWiki:Common.js.


/* ######################################################################## */
/* ### AJAX RC                                                          ### */
/* ### ---------------------------------------------------------------- ### */
/* ### Description: Automatically refresh "Recent changes" via AJAX     ### */
/* ### Credit:      User:pcj (http://www.wowpedia.org)                  ### */
/* ###              User:Porter21 (fallout.wikia.com)                   ### */
/* ######################################################################## */
 
var indicator = 'http://images1.wikia.nocookie.net/assassinscreed/images/d/de/Ajax-loader.gif';
var ajaxPages = new Array("Special:RecentChanges", "Special:WikiActivity", "Assassinscreed Wiki:WikiActivity");
var ajaxTimer;
var ajaxRefresh = 60000;
var refreshText = 'Auto-refresh';
if( typeof AjaxRCRefreshText == "string" ) {
	refreshText = AjaxRCRefreshText;
}
var refreshHover = 'Enable auto-refreshing page loads';
if( typeof AjaxRCRefreshHoverText == "string" ) {
	refreshHover = AjaxRCRefreshHoverText;
}
var doRefresh = true;
 
function setCookie(c_name,value,expiredays) {
   var exdate=new Date()
   exdate.setDate(exdate.getDate()+expiredays)
   document.cookie=c_name+ "=" +escape(value) + ((expiredays==null) ? "" : ";expires="+exdate.toGMTString())
}
 
function getCookie(c_name) {
   if (document.cookie.length>0) {
      c_start=document.cookie.indexOf(c_name + "=")
      if (c_start!=-1) { 
         c_start=c_start + c_name.length+1 
         c_end=document.cookie.indexOf(";",c_start)
         if (c_end==-1) c_end=document.cookie.length
         return unescape(document.cookie.substring(c_start,c_end))
      } 
   }
   return ""
}
 
function preloadAJAXRL() {
   ajaxRLCookie = (getCookie("ajaxload-"+wgPageName)=="on") ? true:false;
   appTo = ($("#WikiaPageHeader").length)?$("#WikiaPageHeader > h1"):$(".firstHeading");
   appTo.append(' <span style="font-size: xx-small; line-height: 100%;" id="ajaxRefresh"><span style="border-bottom: 1px dotted; cursor: help;" id="ajaxToggleText" title="' + refreshHover + '">' + refreshText + ':</span><input type="checkbox" style="margin-bottom: 0;" id="ajaxToggle"><span style="display: none;" id="ajaxLoadProgress"><img src="' + indicator + '" style="vertical-align: baseline;" border="0" alt="Refreshing page" /></span></span>');
   $("#ajaxLoadProgress").ajaxSend(function (event, xhr, settings){
      if (location.href == settings.url) $(this).show();
   }).ajaxComplete (function (event, xhr, settings){
      if (location.href == settings.url) $(this).hide();
   });
   $("#ajaxToggle").click(toggleAjaxReload);
   $("#ajaxToggle").attr("checked", ajaxRLCookie);
   if (getCookie("ajaxload-"+wgPageName)=="on") loadPageData();
}
 
function toggleAjaxReload() {
   if ($("#ajaxToggle").attr("checked") == true) {
      setCookie("ajaxload-"+wgPageName, "on", 30);
      doRefresh = true;
      loadPageData();
   } else {
      setCookie("ajaxload-"+wgPageName, "off", 30);
      doRefresh = false;
      clearTimeout(ajaxTimer);
   }
}
 
function loadPageData() {
   cC = ($("#WikiaArticle").length)?"#WikiaArticle":"#bodyContent";
   $(cC).load(location.href + " " + cC + " > *", function (data) { 
      if (doRefresh) ajaxTimer = setTimeout("loadPageData();", ajaxRefresh);
   });
}
addOnloadHook(function(){ for (x in ajaxPages) { if (wgPageName == ajaxPages[x] && $("#ajaxToggle").length==0) preloadAJAXRL() } } );

Vatsa 18:22, May 6, 2011 (UTC)

I loved that feature from other wikis. Props. --THIEF 03:12, May 7, 2011 (UTC)

Laughed my ass off

Hahahaha, your image gallery. "ARE YOU LADIESMAN217?". Good grief, I laughed hard. It's even more funny due to the fact that TF was on TV just a few days ago. Hohoho. Thanks for making my day, hahah. (I think I need coffee). --THIEF 04:16, May 7, 2011 (UTC)

Thanks, I guess. :P --WarClown Frequency: 149.94 04:19, May 7, 2011 (UTC)