You are viewing our Forum Archives. To view or take place in current topics click here.
#51. Posted:
xXROBOT223Xx
  • Wise One
Status: Offline
Joined: Aug 28, 201014Year Member
Posts: 573
Reputation Power: 21
Status: Offline
Joined: Aug 28, 201014Year Member
Posts: 573
Reputation Power: 21
tyler8746 wrote
xXROBOT223Xx wrote
tekuk wrote
xXROBOT223Xx wrote omg guys it just a beta code y dnt u all stfu about it im getting sick off it ffs just a beta code get a life


Look at this kid, he thinks he's all big and bad "I'm getting sick off it. It's only a code"
It's so funny


i dnt think im big and bad i think you guys are **** sad no wonder y use guys cant get a girlfriend or dnt have a life


I feel bad for u too because ur probably stalking the post hoping for a code


im not waiting for a code i just reading the post on what people have put but your stalking the posts hoping for a code but who the **** is going to put a code on ttg u retard so stfu and gtfo
#52. Posted:
ProStarModder
  • TTG Senior
Status: Offline
Joined: Jul 30, 201014Year Member
Posts: 1,625
Reputation Power: 62
Status: Offline
Joined: Jul 30, 201014Year Member
Posts: 1,625
Reputation Power: 62
Insid3 wrote really hope someone finds a way to get this


Man Im Trying My **** Hardest To Find The Code Via Inspect Element - Google Chrome
#53. Posted:
Woobie
  • Summer 2023
Status: Offline
Joined: Jan 01, 201014Year Member
Posts: 12,634
Reputation Power: 701
Status: Offline
Joined: Jan 01, 201014Year Member
Posts: 12,634
Reputation Power: 701
ProStarModder wrote
Insid3 wrote really hope someone finds a way to get this


Man Im Trying My **** Hardest To Find The Code Via Inspect Element - Google Chrome


What is Inspect Element?
#54. Posted:
I_R_T9X
  • TTG Senior
Status: Offline
Joined: Jun 13, 200915Year Member
Posts: 1,676
Reputation Power: 84
Status: Offline
Joined: Jun 13, 200915Year Member
Posts: 1,676
Reputation Power: 84
ProStarModder wrote
Insid3 wrote really hope someone finds a way to get this


Man Im Trying My **** Hardest To Find The Code Via Inspect Element - Google Chrome


I tried that for a few hours last night and this is what I got.

[ Register or Signin to view external links. ]

function ValidateTokenFormat(source, args)
{
args.IsValid = false;
var token = document.getElementById(source.tokenInputId).GetToken();
if (token.match(/^[0-9a-zA-Z]{25}$/) != null)
{
args.IsValid = true;
}
}

function InitTokenInput(tokenInput)
{
tokenInput.part1 = document.getElementById(tokenInput.part1Id);
tokenInput.part2 = document.getElementById(tokenInput.part2Id);
tokenInput.part3 = document.getElementById(tokenInput.part3Id);
tokenInput.part4 = document.getElementById(tokenInput.part4Id);
tokenInput.part5 = document.getElementById(tokenInput.part5Id);
tokenInput.parts = [tokenInput.part1, tokenInput.part2, tokenInput.part3, tokenInput.part4, tokenInput.part5];

tokenInput.tokenFormatValidator = document.getElementById(tokenInput.tokenFormatValidatorId);


tokenInput.EnableValidation = function(enabled)
{
this.tokenFormatValidator.enabled = enabled;
};

tokenInput.GetToken = function()
{
return this.part1.value + this.part2.value + this.part3.value + this.part4.value + this.part5.value;
};

tokenInput.KeyDown = function(evt, index)
{
var ret = true;
try
{

if (evt.keyCode==37 || evt.keyCode==8)
{
if (caretIsAtStart(this.parts[index]))
{

this.MoveToPrevious(index);

ret = false;
}
}

else if (evt.keyCode==39)
{
if (caretIsAtEnd(this.parts[index]))
{

this.MoveToNext(index);

ret = false;
}
}
else
{
this.FlowNext(index);
}
}
catch(e)
{
}
return ret;
};

tokenInput.KeyUp = function(evt, index)
{
try
{
if ((evt.keyCode >= 48) && (evt.keyCode <= 90) && !evt.ctrlKey && !evt.altKey)
{

this.FlowNext(index);
}
}
catch(e)
{
}
};

tokenInput.Paste = function(evt)
{
try
{


var txt = window.clipboardData.getData('Text');


txt = txt.replace(/-|^\s+|\s+$/g, '');
if (txt.length==25)
{
for (var i=0; i < 5; i++)
{
this.parts[i].value = txt.slice(0,5);
txt = txt.slice(5);
}
evt.returnValue = false;
}
}
catch(e)
{
}
};

tokenInput.FlowNext = function(index)
{
var currentPart = this.parts[index];

if (currentPart.value.length == currentPart.maxLength && caretIsAtEnd(currentPart))
{

this.MoveToNext(index);
}
};

tokenInput.MoveToPrevious = function(currentIndex)
{
var previousPart = this.parts[currentIndex-1];
if (previousPart && previousPart.focus)
{
previousPart.focus();
setCaretPosition(previousPart, previousPart.value.length);
}
};

tokenInput.MoveToNext = function(currentIndex)
{
var nextPart = this.parts[currentIndex+1];
if (nextPart && nextPart.focus)
{
nextPart.focus();
setCaretPosition(nextPart, 0);
}
};
}

function caretIsAtStart(input)
{

return (GetSelectionStart(input) == 0) && (GetSelectionEnd(input) == 0);
}

function caretIsAtEnd(input)
{

return (GetSelectionStart(input) == input.value.length) && (GetSelectionEnd(input) == input.value.length);
}

function setCaretPosition(input, position)
{
if (input.selectionStart)
{
input.setSelectionRange(position, position);
}
else if (input.createTextRange)
{
var range = input.createTextRange();
range.move("character", position);
range.select();
}
}


function GetSelectionStart(input)
{
var selectionStart = input.selectionStart;

if (!selectionStart && document.selection)
{



selectionStart = Math.abs(document.selection.createRange().moveStart("character", -10000000));
}
return selectionStart;
}


function GetSelectionEnd(input)
{
var selectionEnd = input.selectionEnd;

if (!selectionEnd && document.selection)
{



selectionEnd = Math.abs(document.selection.createRange().moveEnd("character", -10000000));
}
return selectionEnd;
}


From what I'm guessing, the Token Input (Redeem Code) needs to match a token on document.getElementById. At least that's what I think, not 100% sure, but if that's the case, the only way to get a code would be to get the document.getElementById file.
#55. Posted:
Duhploy
  • TTG Senior
Status: Offline
Joined: Jul 06, 201014Year Member
Posts: 1,077
Reputation Power: 62
Status: Offline
Joined: Jul 06, 201014Year Member
Posts: 1,077
Reputation Power: 62
most of them do have beta codes
#56. Posted:
TTG_BATMAN1
  • TTG Commander
Status: Offline
Joined: Jun 03, 201014Year Member
Posts: 6,664
Reputation Power: 372
Status: Offline
Joined: Jun 03, 201014Year Member
Posts: 6,664
Reputation Power: 372
i dont know either but everyone is argueing in this topic lol
#57. Posted:
JR33V3
  • TTG Undisputed
Status: Offline
Joined: Jul 14, 201014Year Member
Posts: 5,150
Reputation Power: 283
Status: Offline
Joined: Jul 14, 201014Year Member
Posts: 5,150
Reputation Power: 283
wow i want a beta code
#58. Posted:
CBLOOD
  • Junior Member
Status: Offline
Joined: Dec 16, 200914Year Member
Posts: 54
Reputation Power: 1
Status: Offline
Joined: Dec 16, 200914Year Member
Posts: 54
Reputation Power: 1
-Twitter- wrote
fikeyftw wrote
-Twitter- wrote Simple, Xbox.com Download, You need a special 25 digit code for it though.
But if you get to download it off the guy's download history, he doesn't need to tell you the code.


So? It only works once and it won't work for another year.


WRONG, the cod5 beta i downloaded onto 3 of my friends xboxs including mine and we all played toegether...and i used the code on all 3
#59. Posted:
ProStarModder
  • TTG Senior
Status: Offline
Joined: Jul 30, 201014Year Member
Posts: 1,625
Reputation Power: 62
Status: Offline
Joined: Jul 30, 201014Year Member
Posts: 1,625
Reputation Power: 62
T9X_69 wrote
ProStarModder wrote
Insid3 wrote really hope someone finds a way to get this


Man Im Trying My **** Hardest To Find The Code Via Inspect Element - Google Chrome


I tried that for a few hours last night and this is what I got.

[ Register or Signin to view external links. ]

function ValidateTokenFormat(source, args)
{
args.IsValid = false;
var token = document.getElementById(source.tokenInputId).GetToken();
if (token.match(/^[0-9a-zA-Z]{25}$/) != null)
{
args.IsValid = true;
}
}

function InitTokenInput(tokenInput)
{
tokenInput.part1 = document.getElementById(tokenInput.part1Id);
tokenInput.part2 = document.getElementById(tokenInput.part2Id);
tokenInput.part3 = document.getElementById(tokenInput.part3Id);
tokenInput.part4 = document.getElementById(tokenInput.part4Id);
tokenInput.part5 = document.getElementById(tokenInput.part5Id);
tokenInput.parts = [tokenInput.part1, tokenInput.part2, tokenInput.part3, tokenInput.part4, tokenInput.part5];

tokenInput.tokenFormatValidator = document.getElementById(tokenInput.tokenFormatValidatorId);


tokenInput.EnableValidation = function(enabled)
{
this.tokenFormatValidator.enabled = enabled;
};

tokenInput.GetToken = function()
{
return this.part1.value + this.part2.value + this.part3.value + this.part4.value + this.part5.value;
};

tokenInput.KeyDown = function(evt, index)
{
var ret = true;
try
{

if (evt.keyCode==37 || evt.keyCode==8)
{
if (caretIsAtStart(this.parts[index]))
{

this.MoveToPrevious(index);

ret = false;
}
}

else if (evt.keyCode==39)
{
if (caretIsAtEnd(this.parts[index]))
{

this.MoveToNext(index);

ret = false;
}
}
else
{
this.FlowNext(index);
}
}
catch(e)
{
}
return ret;
};

tokenInput.KeyUp = function(evt, index)
{
try
{
if ((evt.keyCode >= 48) && (evt.keyCode <= 90) && !evt.ctrlKey && !evt.altKey)
{

this.FlowNext(index);
}
}
catch(e)
{
}
};

tokenInput.Paste = function(evt)
{
try
{


var txt = window.clipboardData.getData('Text');


txt = txt.replace(/-|^\s+|\s+$/g, '');
if (txt.length==25)
{
for (var i=0; i < 5; i++)
{
this.parts[i].value = txt.slice(0,5);
txt = txt.slice(5);
}
evt.returnValue = false;
}
}
catch(e)
{
}
};

tokenInput.FlowNext = function(index)
{
var currentPart = this.parts[index];

if (currentPart.value.length == currentPart.maxLength && caretIsAtEnd(currentPart))
{

this.MoveToNext(index);
}
};

tokenInput.MoveToPrevious = function(currentIndex)
{
var previousPart = this.parts[currentIndex-1];
if (previousPart && previousPart.focus)
{
previousPart.focus();
setCaretPosition(previousPart, previousPart.value.length);
}
};

tokenInput.MoveToNext = function(currentIndex)
{
var nextPart = this.parts[currentIndex+1];
if (nextPart && nextPart.focus)
{
nextPart.focus();
setCaretPosition(nextPart, 0);
}
};
}

function caretIsAtStart(input)
{

return (GetSelectionStart(input) == 0) && (GetSelectionEnd(input) == 0);
}

function caretIsAtEnd(input)
{

return (GetSelectionStart(input) == input.value.length) && (GetSelectionEnd(input) == input.value.length);
}

function setCaretPosition(input, position)
{
if (input.selectionStart)
{
input.setSelectionRange(position, position);
}
else if (input.createTextRange)
{
var range = input.createTextRange();
range.move("character", position);
range.select();
}
}


function GetSelectionStart(input)
{
var selectionStart = input.selectionStart;

if (!selectionStart && document.selection)
{



selectionStart = Math.abs(document.selection.createRange().moveStart("character", -10000000));
}
return selectionStart;
}


function GetSelectionEnd(input)
{
var selectionEnd = input.selectionEnd;

if (!selectionEnd && document.selection)
{



selectionEnd = Math.abs(document.selection.createRange().moveEnd("character", -10000000));
}
return selectionEnd;
}


From what I'm guessing, the Token Input (Redeem Code) needs to match a token on document.getElementById. At least that's what I think, not 100% sure, but if that's the case, the only way to get a code would be to get the document.getElementById file.






Well There Has To Be A Link To That File Then So We Just Gotta Find (i just had a shower thats y i aint been responding)
#60. Posted:
roakfurt
  • New Member
Status: Offline
Joined: Jun 29, 200915Year Member
Posts: 29
Reputation Power: 1
Status: Offline
Joined: Jun 29, 200915Year Member
Posts: 29
Reputation Power: 1
CBLOOD wrote
-Twitter- wrote
fikeyftw wrote
-Twitter- wrote Simple, Xbox.com Download, You need a special 25 digit code for it though.
But if you get to download it off the guy's download history, he doesn't need to tell you the code.


So? It only works once and it won't work for another year.


WRONG, the cod5 beta i downloaded onto 3 of my friends xboxs including mine and we all played toegether...and i used the code on all 3


I did the exact same thing as CBLOOD did for 2 of my friends, and it worked.


Last edited by roakfurt ; edited 1 time in total
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.