Vodka is not cheater, proof and explanation. [Archive] - UnrealTournament Siege, Bunnytrack, Combogib, Instagib, UT99, UT4 clan & Server Discussion

PDA

View Full Version : Vodka is not cheater, proof and explanation.



wuachi.elite.12
11-15-2012, 02:54 AM
Vodka:
Hello everybody.
As some know I´ve always dedicated to make videos and look for a lot of things to make them better.
five years ago I found a file that fixed a problem in the demos that the flag on the flag carrier couldn´t be visible on the player´s back.
The file is UTPureR7G cracked... and it only works to see the flag on the player´s back.
Days ago I wanted to use it to make a video and I forgot to take it off and I entered a server.
This is an explanatory video.

Video explicativo - YouTube (http://www.youtube.com/watch?v=ARp0uYZjefQ&feature=youtu.be)

As you can see, it would be stupid if i´d want to use a cheat created 6 years ago.

I am vodka´s friend, posting for him :)

UNrealshots
11-15-2012, 04:49 AM
Rofl... that's pathetic.

SAM
11-15-2012, 12:21 PM
How extremely silly of us. Why didn't you tell us sooner! I'll unban him right away :rolleyes:

Crsk
11-15-2012, 03:35 PM
Just after 5 years using this file for make videos he forgot remove before play online
I believe him for that and because he is a good video maker and a really good player.
I see demos are too buggy for mode online and sometimes dirty files are usefull

but Vodka, why in the video you have dodgebot in your mod tab?
I know that file because four days ago I was reading his code, this bot was usefull for me because I was looking for the preconfigured class necesary to create key bind tabs and that dodgebot help me finding it (class'UMenuCustomizeClientWindow')


class UMenuCustomizeClientWindow extends UMenuPageWindow;

var localized string LocalizedKeyName[255];
var string RealKeyName[255];
var int BoundKey1[100];
var int BoundKey2[100];
var UMenuLabelControl KeyNames[100];
var UMenuRaisedButton KeyButtons[100];
var UMenuRaisedButton SelectedButton;
var localized string LabelList[100];
var string AliasNames[100];
var int Selection;
var bool bPolling;
var localized string OrString;
var localized string CustomizeHelp;

var UWindowSmallButton DefaultsButton;
var localized string DefaultsText;
var localized string DefaultsHelp;

var UMenuLabelControl JoystickHeading;
var localized string JoystickText;

var UWindowComboControl JoyXCombo;
var localized string JoyXText;
var localized string JoyXHelp;
var localized string JoyXOptions[2];
var string JoyXBinding[2];

var UWindowComboControl JoyYCombo;
var localized string JoyYText;
var localized string JoyYHelp;
var localized string JoyYOptions[2];
var string JoyYBinding[2];

var int AliasCount;
var bool bLoadedExisting;
var bool bJoystick;
var float JoyDesiredHeight, NoJoyDesiredHeight;

function Created()
{
local int ButtonWidth, ButtonLeft, ButtonTop, I, J, pos;
local int LabelWidth, LabelLeft;
local UMenuLabelControl Heading;
local bool bTop;

bIgnoreLDoubleClick = True;
bIgnoreMDoubleClick = True;
bIgnoreRDoubleClick = True;

bJoystick = bool(GetPlayerOwner().ConsoleCommand("get windrv.windowsclient usejoystick"));

Super.Created();

SetAcceptsFocus();

ButtonWidth = WinWidth - 140;
ButtonLeft = WinWidth - ButtonWidth - 40;

LabelWidth = WinWidth - 100;
LabelLeft = 20;

// Defaults Button
DefaultsButton = UWindowSmallButton(CreateControl(class'UWindowSmal lButton', 30, 10, 48, 16));
DefaultsButton.SetText(DefaultsText);
DefaultsButton.SetFont(F_Normal);
DefaultsButton.SetHelpText(DefaultsHelp);

ButtonTop = 25;
bTop = True;
for (I=0; I<ArrayCount(AliasNames); I++)
{
if(AliasNames[I] == "")
break;

j = InStr(LabelList[I], ",");
if(j != -1)
{
if(!bTop)
ButtonTop += 10;
Heading = UMenuLabelControl(CreateControl(class'UMenuLabelCo ntrol', LabelLeft-10, ButtonTop+3, WinWidth, 1));
Heading.SetText(Left(LabelList[I], j));
Heading.SetFont(F_Bold);
LabelList[I] = Mid(LabelList[I], j+1);
ButtonTop += 19;
}
bTop = False;

KeyNames[I] = UMenuLabelControl(CreateControl(class'UMenuLabelCo ntrol', LabelLeft, ButtonTop+3, LabelWidth, 1));
KeyNames[I].SetText(LabelList[I]);
KeyNames[I].SetHelpText(CustomizeHelp);
KeyNames[I].SetFont(F_Normal);
KeyButtons[I] = UMenuRaisedButton(CreateControl(class'UMenuRaisedB utton', ButtonLeft, ButtonTop, ButtonWidth, 1));
KeyButtons[I].SetHelpText(CustomizeHelp);
KeyButtons[I].bAcceptsFocus = False;
KeyButtons[I].bIgnoreLDoubleClick = True;
KeyButtons[I].bIgnoreMDoubleClick = True;
KeyButtons[I].bIgnoreRDoubleClick = True;
ButtonTop += 19;
}
AliasCount = I;

NoJoyDesiredHeight = ButtonTop + 10;

// Joystick
ButtonTop += 10;
JoystickHeading = UMenuLabelControl(CreateControl(class'UMenuLabelCo ntrol', LabelLeft-10, ButtonTop+3, WinWidth, 1));
JoystickHeading.SetText(JoystickText);
JoystickHeading.SetFont(F_Bold);
LabelList[I] = Mid(LabelList[I], j+1);
ButtonTop += 19;

JoyXCombo = UWindowComboControl(CreateControl(class'UWindowCom boControl', 20, ButtonTop, WinWidth - 40, 1));
JoyXCombo.CancelAcceptsFocus();
JoyXCombo.SetText(JoyXText);
JoyXCombo.SetHelpText(JoyXHelp);
JoyXCombo.SetFont(F_Normal);
JoyXCombo.SetEditable(False);
JoyXCombo.AddItem(JoyXOptions[0]);
JoyXCombo.AddItem(JoyXOptions[1]);
JoyXCombo.EditBoxWidth = ButtonWidth;
ButtonTop += 20;

JoyYCombo = UWindowComboControl(CreateControl(class'UWindowCom boControl', 20, ButtonTop, WinWidth - 40, 1));
JoyYCombo.CancelAcceptsFocus();
JoyYCombo.SetText(JoyYText);
JoyYCombo.SetHelpText(JoyYHelp);
JoyYCombo.SetFont(F_Normal);
JoyYCombo.SetEditable(False);
JoyYCombo.AddItem(JoyYOptions[0]);
JoyYCombo.AddItem(JoyYOptions[1]);
JoyYCombo.EditBoxWidth = ButtonWidth;
ButtonTop += 20;

LoadExistingKeys();

DesiredWidth = 220;
JoyDesiredHeight = ButtonTop + 10;
DesiredHeight = JoyDesiredHeight;
}

function WindowShown()
{
Super.WindowShown();
bJoystick = bool(GetPlayerOwner().ConsoleCommand("get windrv.windowsclient usejoystick"));
}

function LoadExistingKeys()
{
local int I, J, pos;
local string KeyName;
local string Alias;

for (I=0; I<AliasCount; I++)
{
BoundKey1[I] = 0;
BoundKey2[I] = 0;
}

for (I=0; I<255; I++)
{
KeyName = GetPlayerOwner().ConsoleCommand( "KEYNAME "$i );
RealKeyName[i] = KeyName;
if ( KeyName != "" )
{
Alias = GetPlayerOwner().ConsoleCommand( "KEYBINDING "$KeyName );
if ( Alias != "" )
{
pos = InStr(Alias, " ");
if ( pos != -1 )
{
if( !(Left(Alias, pos) ~= "taunt") &&
!(Left(Alias, pos) ~= "getweapon") &&
!(Left(Alias, pos) ~= "viewplayernum") &&
!(Left(Alias, pos) ~= "button") &&
!(Left(Alias, pos) ~= "mutate"))
Alias = Left(Alias, pos);
}
for (J=0; J<AliasCount; J++)
{
if ( AliasNames[J] ~= Alias && AliasNames[J] != "None" )
{
if ( BoundKey1[J] == 0 )
BoundKey1[J] = i;
else
if ( BoundKey2[J] == 0)
BoundKey2[J] = i;
}
}
}
}
}

bLoadedExisting = False;
Alias = GetPlayerOwner().ConsoleCommand( "KEYBINDING JoyX" );
if(Alias ~= JoyXBinding[0])
JoyXCombo.SetSelectedIndex(0);
if(Alias ~= JoyXBinding[1])
JoyXCombo.SetSelectedIndex(1);

Alias = GetPlayerOwner().ConsoleCommand( "KEYBINDING JoyY" );
if(Alias ~= JoyYBinding[0])
JoyYCombo.SetSelectedIndex(0);
if(Alias ~= JoyYBinding[1])
JoyYCombo.SetSelectedIndex(1);
bLoadedExisting = True;
}

function BeforePaint(Canvas C, float X, float Y)
{
local int ButtonWidth, ButtonLeft, I;
local int LabelWidth, LabelLeft;

ButtonWidth = WinWidth - 135;
ButtonLeft = WinWidth - ButtonWidth - 20;

DefaultsButton.AutoWidth(C);
DefaultsButton.WinLeft = ButtonLeft + ButtonWidth - DefaultsButton.WinWidth;

LabelWidth = WinWidth - 100;
LabelLeft = 20;

if(bJoystick)
{
DesiredHeight = JoyDesiredHeight;

JoystickHeading.ShowWindow();
JoyXCombo.ShowWindow();
JoyYCombo.ShowWindow();

JoyXCombo.SetSize(WinWidth - 40, 1);
JoyXCombo.EditBoxWidth = ButtonWidth;

JoyYCombo.SetSize(WinWidth - 40, 1);
JoyYCombo.EditBoxWidth = ButtonWidth;
}
else
{
DesiredHeight = NoJoyDesiredHeight;

JoystickHeading.HideWindow();
JoyXCombo.HideWindow();
JoyYCombo.HideWindow();
}

for (I=0; I<AliasCount; I++)
{
KeyButtons[I].SetSize(ButtonWidth, 1);
KeyButtons[I].WinLeft = ButtonLeft;

KeyNames[I].SetSize(LabelWidth, 1);
KeyNames[I].WinLeft = LabelLeft;
}

for (I=0; I<AliasCount; I++ )
{
if ( BoundKey1[I] == 0 )
KeyButtons[I].SetText("");
else
if ( BoundKey2[I] == 0 )
KeyButtons[I].SetText(LocalizedKeyName[BoundKey1[I]]);
else
KeyButtons[I].SetText(LocalizedKeyName[BoundKey1[I]]$OrString$LocalizedKeyName[BoundKey2[I]]);
}
}

function KeyDown( int Key, float X, float Y )
{
if (bPolling)
{
ProcessMenuKey(Key, RealKeyName[Key]);
bPolling = False;
SelectedButton.bDisabled = False;
}
}

function RemoveExistingKey(int KeyNo, string KeyName)
{
local int I;

// Remove this key from any existing binding display
for ( I=0; I<AliasCount; I++ )
{
if(I != Selection)
{
if ( BoundKey2[I] == KeyNo )
BoundKey2[I] = 0;

if ( BoundKey1[I] == KeyNo )
{
BoundKey1[I] = BoundKey2[I];
BoundKey2[I] = 0;
}
}
}
}

function SetKey(int KeyNo, string KeyName)
{
if ( BoundKey1[Selection] != 0 )
{

// if this key is already chosen, just clear out other slot
if(KeyNo == BoundKey1[Selection])
{
// if 2 exists, remove it it.
if(BoundKey2[Selection] != 0)
{
GetPlayerOwner().ConsoleCommand("SET Input "$RealKeyName[BoundKey2[Selection]]);
BoundKey2[Selection] = 0;
}
}
else
if(KeyNo == BoundKey2[Selection])
{
// Remove slot 1
GetPlayerOwner().ConsoleCommand("SET Input "$RealKeyName[BoundKey1[Selection]]);
BoundKey1[Selection] = BoundKey2[Selection];
BoundKey2[Selection] = 0;
}
else
{
// Clear out old slot 2 if it exists
if(BoundKey2[Selection] != 0)
{
GetPlayerOwner().ConsoleCommand("SET Input "$RealKeyName[BoundKey2[Selection]]);
BoundKey2[Selection] = 0;
}

// move key 1 to key 2, and set ourselves in 1.
BoundKey2[Selection] = BoundKey1[Selection];
BoundKey1[Selection] = KeyNo;
GetPlayerOwner().ConsoleCommand("SET Input"@KeyName@AliasNames[Selection]);
}
}
else
{
BoundKey1[Selection] = KeyNo;
GetPlayerOwner().ConsoleCommand("SET Input"@KeyName@AliasNames[Selection]);
}
}

function ProcessMenuKey( int KeyNo, string KeyName )
{
if ( (KeyName == "") || (KeyName == "Escape")
|| ((KeyNo >= 0x70 ) && (KeyNo <= 0x79)) // function keys
|| ((KeyNo >= 0x30 ) && (KeyNo <= 0x39))) // number keys
return;

RemoveExistingKey(KeyNo, KeyName);
SetKey(KeyNo, KeyName);
}

function Notify(UWindowDialogControl C, byte E)
{
local int I;

Super.Notify(C, E);

if(C == DefaultsButton && E == DE_Click)
{
GetPlayerOwner().ResetKeyboard();
LoadExistingKeys();
return;
}

switch(E)
{
case DE_Change:
switch(C)
{
case JoyXCombo:
if(bLoadedExisting)
GetPlayerOwner().ConsoleCommand("SET Input JoyX "$JoyXBinding[JoyXCombo.GetSelectedIndex()]);
break;
case JoyYCombo:
if(bLoadedExisting)
GetPlayerOwner().ConsoleCommand("SET Input JoyY "$JoyYBinding[JoyYCombo.GetSelectedIndex()]);
break;
}
break;
case DE_Click:
if (bPolling)
{
bPolling = False;
SelectedButton.bDisabled = False;

if(C == SelectedButton)
{
ProcessMenuKey(1, RealKeyName[1]);
return;
}
}

if (UMenuRaisedButton(C) != None)
{
SelectedButton = UMenuRaisedButton(C);
for ( I=0; I<AliasCount; I++ )
{
if (KeyButtons[I] == C)
Selection = I;
}
bPolling = True;
SelectedButton.bDisabled = True;
}
break;
case DE_RClick:
if (bPolling)
{
bPolling = False;
SelectedButton.bDisabled = False;

if(C == SelectedButton)
{
ProcessMenuKey(2, RealKeyName[2]);
return;
}
}
break;
case DE_MClick:
if (bPolling)
{
bPolling = False;
SelectedButton.bDisabled = False;

if(C == SelectedButton)
{
ProcessMenuKey(4, RealKeyName[4]);
return;
}
}
break;
}
}

function GetDesiredDimensions(out float W, out float H)
{
Super.GetDesiredDimensions(W, H);
H = 200;
}

defaultproperties
{
LocalizedKeyName(1)="LeftMouse"
LocalizedKeyName(2)="RightMouse"
LocalizedKeyName(3)="Cancel"
LocalizedKeyName(4)="MiddleMouse"
LocalizedKeyName(5)="Unknown05"
LocalizedKeyName(6)="Unknown06"
LocalizedKeyName(7)="Unknown07"
LocalizedKeyName(8)="Backspace"
LocalizedKeyName(9)="Tab"
LocalizedKeyName(10)="Unknown0A"
LocalizedKeyName(11)="Unknown0B"
LocalizedKeyName(12)="Unknown0C"
LocalizedKeyName(13)="Enter"
LocalizedKeyName(14)="Unknown0E"
LocalizedKeyName(15)="Unknown0F"
LocalizedKeyName(16)="Shift"
LocalizedKeyName(17)="Ctrl"
LocalizedKeyName(18)="Alt"
LocalizedKeyName(19)="Pause"
LocalizedKeyName(20)="CapsLock"
LocalizedKeyName(21)="Unknown15"
LocalizedKeyName(22)="Unknown16"
LocalizedKeyName(23)="Unknown17"
LocalizedKeyName(24)="Unknown18"
LocalizedKeyName(25)="Unknown19"
LocalizedKeyName(26)="Unknown1A"
LocalizedKeyName(27)="Escape"
LocalizedKeyName(28)="Unknown1C"
LocalizedKeyName(29)="Unknown1D"
LocalizedKeyName(30)="Unknown1E"
LocalizedKeyName(31)="Unknown1F"
LocalizedKeyName(32)="Space"
LocalizedKeyName(33)="PageUp"
LocalizedKeyName(34)="PageDown"
LocalizedKeyName(35)="End"
LocalizedKeyName(36)="Home"
LocalizedKeyName(37)="Left"
LocalizedKeyName(38)="Up"
LocalizedKeyName(39)="Right"
LocalizedKeyName(40)="Down"
LocalizedKeyName(41)="Select"
LocalizedKeyName(42)="Print"
LocalizedKeyName(43)="Execute"
LocalizedKeyName(44)="PrintScrn"
LocalizedKeyName(45)="Insert"
LocalizedKeyName(46)="Delete"
LocalizedKeyName(47)="Help"
LocalizedKeyName(48)="0"
LocalizedKeyName(49)="1"
LocalizedKeyName(50)="2"
LocalizedKeyName(51)="3"
LocalizedKeyName(52)="4"
LocalizedKeyName(53)="5"
LocalizedKeyName(54)="6"
LocalizedKeyName(55)="7"
LocalizedKeyName(56)="8"
LocalizedKeyName(57)="9"
LocalizedKeyName(58)="Unknown3A"
LocalizedKeyName(59)="Unknown3B"
LocalizedKeyName(60)="Unknown3C"
LocalizedKeyName(61)="Unknown3D"
LocalizedKeyName(62)="Unknown3E"
LocalizedKeyName(63)="Unknown3F"
LocalizedKeyName(64)="Unknown40"
LocalizedKeyName(65)="A"
LocalizedKeyName(66)="B"
LocalizedKeyName(67)="C"
LocalizedKeyName(68)="D"
LocalizedKeyName(69)="E"
LocalizedKeyName(70)="F"
LocalizedKeyName(71)="G"
LocalizedKeyName(72)="H"
LocalizedKeyName(73)="I"
LocalizedKeyName(74)="J"
LocalizedKeyName(75)="K"
LocalizedKeyName(76)="L"
LocalizedKeyName(77)="M"
LocalizedKeyName(78)="N"
LocalizedKeyName(79)="O"
LocalizedKeyName(80)="P"
LocalizedKeyName(81)="Q"
LocalizedKeyName(82)="R"
LocalizedKeyName(83)="S"
LocalizedKeyName(84)="T"
LocalizedKeyName(85)="U"
LocalizedKeyName(86)="V"
LocalizedKeyName(87)="W"
LocalizedKeyName(88)="X"
LocalizedKeyName(89)="Y"
LocalizedKeyName(90)="Z"
LocalizedKeyName(91)="Unknown5B"
LocalizedKeyName(92)="Unknown5C"
LocalizedKeyName(93)="Unknown5D"
LocalizedKeyName(94)="Unknown5E"
LocalizedKeyName(95)="Unknown5F"
LocalizedKeyName(96)="NumPad0"
LocalizedKeyName(97)="NumPad1"
LocalizedKeyName(98)="NumPad2"
LocalizedKeyName(99)="NumPad3"
LocalizedKeyName(100)="NumPad4"
LocalizedKeyName(101)="NumPad5"
LocalizedKeyName(102)="NumPad6"
LocalizedKeyName(103)="NumPad7"
LocalizedKeyName(104)="NumPad8"
LocalizedKeyName(105)="NumPad9"
LocalizedKeyName(106)="GreyStar"
LocalizedKeyName(107)="GreyPlus"
LocalizedKeyName(108)="Separator"
LocalizedKeyName(109)="GreyMinus"
LocalizedKeyName(110)="NumPadPeriod"
LocalizedKeyName(111)="GreySlash"
LocalizedKeyName(112)="F1"
LocalizedKeyName(113)="F2"
LocalizedKeyName(114)="F3"
LocalizedKeyName(115)="F4"
LocalizedKeyName(116)="F5"
LocalizedKeyName(117)="F6"
LocalizedKeyName(118)="F7"
LocalizedKeyName(119)="F8"
LocalizedKeyName(120)="F9"
LocalizedKeyName(121)="F10"
LocalizedKeyName(122)="F11"
LocalizedKeyName(123)="F12"
LocalizedKeyName(124)="F13"
LocalizedKeyName(125)="F14"
LocalizedKeyName(126)="F15"
LocalizedKeyName(127)="F16"
LocalizedKeyName(128)="F17"
LocalizedKeyName(129)="F18"
LocalizedKeyName(130)="F19"
LocalizedKeyName(131)="F20"
LocalizedKeyName(132)="F21"
LocalizedKeyName(133)="F22"
LocalizedKeyName(134)="F23"
LocalizedKeyName(135)="F24"
LocalizedKeyName(136)="Unknown88"
LocalizedKeyName(137)="Unknown89"
LocalizedKeyName(138)="Unknown8A"
LocalizedKeyName(139)="Unknown8B"
LocalizedKeyName(140)="Unknown8C"
LocalizedKeyName(141)="Unknown8D"
LocalizedKeyName(142)="Unknown8E"
LocalizedKeyName(143)="Unknown8F"
LocalizedKeyName(144)="NumLock"
LocalizedKeyName(145)="ScrollLock"
LocalizedKeyName(146)="Unknown92"
LocalizedKeyName(147)="Unknown93"
LocalizedKeyName(148)="Unknown94"
LocalizedKeyName(149)="Unknown95"
LocalizedKeyName(150)="Unknown96"
LocalizedKeyName(151)="Unknown97"
LocalizedKeyName(152)="Unknown98"
LocalizedKeyName(153)="Unknown99"
LocalizedKeyName(154)="Unknown9A"
LocalizedKeyName(155)="Unknown9B"
LocalizedKeyName(156)="Unknown9C"
LocalizedKeyName(157)="Unknown9D"
LocalizedKeyName(158)="Unknown9E"
LocalizedKeyName(159)="Unknown9F"
LocalizedKeyName(160)="LShift"
LocalizedKeyName(161)="RShift"
LocalizedKeyName(162)="LControl"
LocalizedKeyName(163)="RControl"
LocalizedKeyName(164)="UnknownA4"
LocalizedKeyName(165)="UnknownA5"
LocalizedKeyName(166)="UnknownA6"
LocalizedKeyName(167)="UnknownA7"
LocalizedKeyName(168)="UnknownA8"
LocalizedKeyName(169)="UnknownA9"
LocalizedKeyName(170)="UnknownAA"
LocalizedKeyName(171)="UnknownAB"
LocalizedKeyName(172)="UnknownAC"
LocalizedKeyName(173)="UnknownAD"
LocalizedKeyName(174)="UnknownAE"
LocalizedKeyName(175)="UnknownAF"
LocalizedKeyName(176)="UnknownB0"
LocalizedKeyName(177)="UnknownB1"
LocalizedKeyName(178)="UnknownB2"
LocalizedKeyName(179)="UnknownB3"
LocalizedKeyName(180)="UnknownB4"
LocalizedKeyName(181)="UnknownB5"
LocalizedKeyName(182)="UnknownB6"
LocalizedKeyName(183)="UnknownB7"
LocalizedKeyName(184)="UnknownB8"
LocalizedKeyName(185)="UnknownB9"
LocalizedKeyName(186)="Semicolon"
LocalizedKeyName(187)="Equals"
LocalizedKeyName(188)="Comma"
LocalizedKeyName(189)="Minus"
LocalizedKeyName(190)="Period"
LocalizedKeyName(191)="Slash"
LocalizedKeyName(192)="Tilde"
LocalizedKeyName(193)="UnknownC1"
LocalizedKeyName(194)="UnknownC2"
LocalizedKeyName(195)="UnknownC3"
LocalizedKeyName(196)="UnknownC4"
LocalizedKeyName(197)="UnknownC5"
LocalizedKeyName(198)="UnknownC6"
LocalizedKeyName(199)="UnknownC7"
LocalizedKeyName(200)="Joy1"
LocalizedKeyName(201)="Joy2"
LocalizedKeyName(202)="Joy3"
LocalizedKeyName(203)="Joy4"
LocalizedKeyName(204)="Joy5"
LocalizedKeyName(205)="Joy6"
LocalizedKeyName(206)="Joy7"
LocalizedKeyName(207)="Joy8"
LocalizedKeyName(208)="Joy9"
LocalizedKeyName(209)="Joy10"
LocalizedKeyName(210)="Joy11"
LocalizedKeyName(211)="Joy12"
LocalizedKeyName(212)="Joy13"
LocalizedKeyName(213)="Joy14"
LocalizedKeyName(214)="Joy15"
LocalizedKeyName(215)="Joy16"
LocalizedKeyName(216)="UnknownD8"
LocalizedKeyName(217)="UnknownD9"
LocalizedKeyName(218)="UnknownDA"
LocalizedKeyName(219)="LeftBracket"
LocalizedKeyName(220)="Backslash"
LocalizedKeyName(221)="RightBracket"
LocalizedKeyName(222)="SingleQuote"
LocalizedKeyName(223)="UnknownDF"
LocalizedKeyName(224)="JoyX"
LocalizedKeyName(225)="JoyY"
LocalizedKeyName(226)="JoyZ"
LocalizedKeyName(227)="JoyR"
LocalizedKeyName(228)="MouseX"
LocalizedKeyName(229)="MouseY"
LocalizedKeyName(230)="MouseZ"
LocalizedKeyName(231)="MouseW"
LocalizedKeyName(232)="JoyU"
LocalizedKeyName(233)="JoyV"
LocalizedKeyName(234)="UnknownEA"
LocalizedKeyName(235)="UnknownEB"
LocalizedKeyName(236)="MouseWheelUp"
LocalizedKeyName(237)="MouseWheelDown"
LocalizedKeyName(238)="Unknown10E"
LocalizedKeyName(239)="Unknown10F"
LocalizedKeyName(240)="JoyPovUp"
LocalizedKeyName(241)="JoyPovDown"
LocalizedKeyName(242)="JoyPovLeft"
LocalizedKeyName(243)="JoyPovRight"
LocalizedKeyName(244)="UnknownF4"
LocalizedKeyName(245)="UnknownF5"
LocalizedKeyName(246)="Attn"
LocalizedKeyName(247)="CrSel"
LocalizedKeyName(248)="ExSel"
LocalizedKeyName(249)="ErEof"
LocalizedKeyName(250)="Play"
LocalizedKeyName(251)="Zoom"
LocalizedKeyName(252)="NoName"
LocalizedKeyName(253)="PA1"
LocalizedKeyName(254)="OEMClear"
LabelList(0)="Fire"
LabelList(1)="Alternate Fire"
LabelList(2)="Move Forward"
LabelList(3)="Move Backward"
LabelList(4)="Turn Left"
LabelList(5)="Turn Right"
LabelList(6)="Strafe Left"
LabelList(7)="Strafe Right"
LabelList(8)="Jump/Up"
LabelList(9)="Crouch/Down"
LabelList(10)="Mouse Look"
LabelList(11)="Activate Item"
LabelList(12)="Next Item"
LabelList(13)="Previous Item"
LabelList(14)="Look Up"
LabelList(15)="Look Down"
LabelList(16)="Center View"
LabelList(17)="Walk"
LabelList(18)="Strafe"
LabelList(19)="Next Weapon"
LabelList(20)="Throw Weapon"
LabelList(21)="Feign Death"
AliasNames(0)="Fire"
AliasNames(1)="AltFire"
AliasNames(2)="MoveForward"
AliasNames(3)="MoveBackward"
AliasNames(4)="TurnLeft"
AliasNames(5)="TurnRight"
AliasNames(6)="StrafeLeft"
AliasNames(7)="StrafeRight"
AliasNames(8)="Jump"
AliasNames(9)="Duck"
AliasNames(10)="Look"
AliasNames(11)="InventoryActivate"
AliasNames(12)="InventoryNext"
AliasNames(13)="InventoryPrevious"
AliasNames(14)="LookUp"
AliasNames(15)="LookDown"
AliasNames(16)="CenterView"
AliasNames(17)="Walking"
AliasNames(18)="Strafe"
AliasNames(19)="NextWeapon"
AliasNames(20)="ThrowWeapon"
AliasNames(21)="FeignDeath"
OrString=" or "
CustomizeHelp="Click the blue rectangle and then press the key to bind to this control."
DefaultsText="Reset"
DefaultsHelp="Reset all controls to their default settings."
JoystickText="Joystick"
JoyXText="X Axis"
JoyXHelp="Select the behavior for the left-right axis of your joystick."
JoyXOptions(0)="Strafe Left/Right"
JoyXOptions(1)="Turn Left/Right"
JoyXBinding(0)="Axis aStrafe speed=2"
JoyXBinding(1)="Axis aBaseX speed=0.7"
JoyYText="Y Axis"
JoyYHelp="Select the behavior for the up-down axis of your joystick."
JoyYOptions(0)="Move Forward/Back"
JoyYOptions(1)="Look Up/Down"
JoyYBinding(0)="Axis aBaseY speed=2"
JoyYBinding(1)="Axis aLookup speed=-0.4"
}


sometimes use cheats does not make you a cheater

|uK|B|aZe//.
11-16-2012, 01:02 PM
in this case he got caught with it loaded while trying to play, thats enough "proof" for me to say he has been cheating.

Ðì§çØñNë¢T
11-16-2012, 05:43 PM
in this case he got caught with it loaded while trying to play, thats enough "proof" for me to say he has been cheating.

Vodka forgot to remove the file, he is human, he can forget
the man presents proof that he is not a cheater, that he commited a mistake and you literally call him cheater because ¨oh, the proof is there!, I don´t care if he forgot removing the file, he is a cheater son of a bitch, I can´t forgive that, cheater for the world¨
I would understand if you call cheater someone that doesn´t present any proof to you, but the proof is there, in fact I make videos too you know? I have Vodka´s UT to use the rypel cam I LEARNT with him, I play UT with my own UT, I use Vodka´s UT for making videos, Unreal Argentina, Global Unreal etc
In fact one day I needed files for making a video for PACO, Vodka´s UT had files missing and I had to enter the PACO server on spectator mode to download files (Pro mod etc etc)
and guess what? I forgot about that file!, and I entered anyway, of course I´d take more precaussions if I use that UT to play on servers, nobody wants to be banned or be called cheater by a MISTAKE.

I know Vodka since November 2011, he is a really great guy, he is an amazing UT player, so is REAAAALLY unfair to call this man cheater for using a file TO MAKE BETTER the rypel cam among other things, we don´t like to watch a video where the flags are missing, and when you kill the man the flag appears from nowhere, that´s the reason that file is there.

Vodka requested me a video and I am making it, the flag will appear on the player´s back :)

I respect ALL opinions, in fact some of you will say stuff like ¨who the hell are you Ðì§çØñNë¢T?... my name is Pablo, I am from Argentina, I play UT since 2000
I make UT videos, UT99 and UT2004 tournaments, I am from the Unreal Argentina Community and Global Unreal, Hello everybody and I am not angry at all, I´m just defending
a friend of mine.

It´s a pleasure to be here :)

|uK|Rays
11-16-2012, 05:53 PM
disco i tried to pm you on globalunreal forum, did you get it?

Ðì§çØñNë¢T
11-16-2012, 06:14 PM
hey Rays, sorry I just read it, give me some time to make a txt with tips and info
I need time to make it, be patience please and thanks for your comment about my vids :)

SAM
11-16-2012, 06:19 PM
If you look at his mod menu in the video, he clearly has a dodge bot on his UT too.

Ðì§çØñNë¢T
11-16-2012, 06:32 PM
yes, I knew about the dodgebot months ago when crytek used it before a pug (not in the pug, in the preview, just for fun)
anyway, I won´t say anything about the dodgebot, I said what I said about the other thing because it´s real what vodka said.
but the dodgebot is not my thing.

|uK|B|aZe//.
11-16-2012, 08:08 PM
im sorry i cant believe a story as fabled as this, anyone can come up with such an excuse, yes im aware of what this cracked pure file does but it also can be used for SEVERAL other things that I will not disclose. someone who has certain "dodgebots" or cheats installed has to be doubted, thats just the way it is.

that said i am a great fan of your movies and am trying to make a few of my own, all self taught and getting tips from z3r0 and i am not trying to disrespect you here by saying what i said above.

|uK|Rays
11-16-2012, 09:07 PM
hey Rays, sorry I just read it, give me some time to make a txt with tips and info
I need time to make it, be patience please and thanks for your comment about my vids :)

much appreciated, no rush man.

wuachi.elite.12
11-16-2012, 11:12 PM
Pues... la verdad si lo conocieran bien a bdk conocerian la gran persona que es, es una lastima que sea llamado cheat por su abilidad muchas veces la gente busca escusa para hacerlo a un lado, pero creo que se equivocaron de persona la verdad es una excelente persona y entiendo aveces porque no converza con los chilenos o no entra a jugar con todas esas personas q lo llaman cheat, creo que estan muy equivocado con el y pues... creo q mas de uno aqui abra probado algo similiar aunq sea en su computadora. la verdad q no tengo mucho q decir y pues... jusgen uds, yo no creo q el quiera q le saquen el ban, yo creo que el solo quiere limpiar su nombre.

Ðì§çØñNë¢T
11-17-2012, 12:22 AM
im sorry i cant believe a story as fabled as this, anyone can come up with such an excuse, yes im aware of what this cracked pure file does but it also can be used for SEVERAL other things that I will not disclose. someone who has certain "dodgebots" or cheats installed has to be doubted, thats just the way it is.

that said i am a great fan of your movies and am trying to make a few of my own, all self taught and getting tips from z3r0 and i am not trying to disrespect you here by saying what i said above.

thank you man

Shotman
11-17-2012, 01:59 AM
Pues... la verdad si lo conocieran bien a bdk conocerian la gran persona que es, es una lastima que sea llamado cheat por su abilidad muchas veces la gente busca escusa para hacerlo a un lado, pero creo que se equivocaron de persona la verdad es una excelente persona y entiendo aveces porque no converza con los chilenos o no entra a jugar con todas esas personas q lo llaman cheat, creo que estan muy equivocado con el y pues... creo q mas de uno aqui abra probado algo similiar aunq sea en su computadora. la verdad q no tengo mucho q decir y pues... jusgen uds, yo no creo q el quiera q le saquen el ban, yo creo que el solo quiere limpiar su nombre.

el uso el cheat y tienen pruebas que uso un cheat. Nunca va a limpiar su nombre porque el log tiene su ip y nombre, eso lo va a seguir donde quierar.

Chamberly
11-17-2012, 09:54 AM
Dodgebot is a cheat. Disappointed... this is the 3rd person out of the other 2 I came across on the server that are a group of (friends) cheaters!

Ok so that is all... no more adding random peep who wanted to add me so soon.

Crsk
11-17-2012, 01:30 PM
I think the first "cheat" is totally justified, ban him is like ban a medic for have drugs in his work place. you right if you ban him if he was using this file a lot of time by online party's, but he wasnt, come on! just after 5 year he forgot remove that file before play

Sam you told me something about the zellius bot some time ago, you told me that is not enough having this cheat inside your system folder for get banned, is necessary activate this by any way (mod tab, keybind, etc.), correct?

so, if you are considering the dodgebot for preserve the ban, then you need to ban me too (I was speaking about using this file in my first post but who cares the razon? just are excuses)

i'm curious for know his dodgebot history... but i'm sure he's not dumb enough to do what he did with the video

PD: I hate cheaters, I like zero tolerance but I think sometimes you need to read the context

Ðì§çØñNë¢T
11-17-2012, 04:16 PM
:)

Ðì§çØñNë¢T
11-17-2012, 11:34 PM
guys, last thing from Vodka


He says:
I tried the dodgebot but I didn´t find it funny, didn´t use it anymore... is there on my UT, useless...
I don´t care the ban on your servers, I just want that you stop talking and rumouring without knowledge, even my chilean compatriot started calling me cheater even if I´ve always been a fair and honest player... that´s all and i won´t discuss this anymore, stop the rumour thing if you don´t know, that´s why I made the video, if you are closed minded and you don´t understand it´s your problem.
Chao.

ok guys, I respect your thoughts
you will see vodka´s video made by me in 2 months, maybe less or more :P
and you will see the magic of this great player, a player that doesn´t need cheats at all

i repeat, it was a pleasure to be here and I think I will be around :D

Chamberly
11-18-2012, 12:07 AM
Another conflict. At the first post, Vodka said he made the video. Now the previous post, Disconnect said he made it.

Sigh.

Trying the cheat don't make it any better than watching how it is done in videos by cheaters who used it!

Ðì§çØñNë¢T
11-18-2012, 04:19 AM
Another conflict. At the first post, Vodka said he made the video. Now the previous post, Disconnect said he made it.

Sigh.

Trying the cheat don't make it any better than watching how it is done in videos by cheaters who used it!

Another conflict your mind is creating, you should read a little bit carefully next time, this is what I said:

ok guys, I respect your thoughts
you will see vodka´s video made by me in 2 months, maybe less or more :P
and you will see the magic of this great player, a player that doesn´t need cheats at all

I will explain it to you with easier words

1: Explanatory video made by Vodka
2: Disconnect is making a frag movie of Vodka which it´s going to see the light in two months, maybe less maybe more.
the video I am making is a frag movie, not a video test to show vodka´s innocence, the idea of this video took place 1 month ago.
and I am making it.

I hope you get it now Chamberly, any other conflict you detect, please let us know.

SAM
11-18-2012, 06:46 AM
Disco, don't try to defend him. There's simply no defending that he had a cheat loaded. As far as I'm concerned you shouldn't be doing his dirty work for him. Also no one is spreading rumours? I don't even bother to post cheat logs anymore so as far as he was concerned he just had to not try and play on our servers and no one would know.

Ðì§çØñNë¢T
11-18-2012, 08:03 AM
oka sam :)

|uK|B|aZe//.
11-18-2012, 12:45 PM
guys, last thing from Vodka


He says:
I tried the dodgebot but I didn´t find it funny, didn´t use it anymore... is there on my UT, useless...
I don´t care the ban on your servers, I just want that you stop talking and rumouring without knowledge, even my chilean compatriot started calling me cheater even if I´ve always been a fair and honest player... that´s all and i won´t discuss this anymore, stop the rumour thing if you don´t know, that´s why I made the video, if you are closed minded and you don´t understand it´s your problem.
Chao.

ok guys, I respect your thoughts
you will see vodka´s video made by me in 2 months, maybe less or more :P
and you will see the magic of this great player, a player that doesn´t need cheats at all

i repeat, it was a pleasure to be here and I think I will be around :D

kind of hoping you might help me with my next dm frag movie so thats good news :P

Moko
11-21-2012, 08:37 AM
Forgive me if I look like Doctor Obvious but is this guy flack?