Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - pastmistake

Pages: [1] 2
1
Complaints Board / Wtf Jimmy boy ?
« on: May 29, 2020, 14:10 »
https://dota.eurobattle.net/la/forum/index.php/topic,126892.msg700175.html#new

Is this a joke I'm supposed to laugh at ?
WTF ban is that ?

1. He never said in all chat to kick servetele for gameruining. He simply spammed "votekick" from time to time. W/o EVER requesting that he would be kicked. Are we supposed to kick someone just cause he say so ? We get "mad" votekicks all of the time.

2. His first ALL CHAT was min 45 > https://prnt.sc/sq1dsd

3. Where's the game ruin ? Mirana spammed wards and made a lot of items, considering he didn;t play core. But again, I was in enemy team so I don;t really know the context. From my side, mirana seemed pretty active and engaged in team fights. (was actually pretty annoying).

TL;DR
> Ok farm
> Ok items
> Ok level
> Ok warding

IS THIS A JOKE ?

2
DotA Discussion / 7.00a is out
« on: May 23, 2020, 21:35 »
7.00 is out.
But in heavy beta.  :boy:

https://prnt.sc/smhs72

The changelog is longer than all other changelogs so far, combined.  >:(

3
Ban Requests / Ban bridgestone racial ranting.
« on: May 23, 2020, 14:55 »
ihavebadteam
bridgestone

https://dota.eurobattle.net/la/forum/index.php?action=gameinfo;sa=game;gid=6294219

09:04   Bridgestone   [Allies]   he is gipsy is normal play like that
13:40   Bridgestone   [Allies]   gipsy
20:12   Bridgestone   [Allies]   why all from romania is gipsy

4
Suggestion Board / More suggestive lobby names
« on: April 06, 2020, 18:44 »
Kind of weird u have to put game mode in title, and sometimes it changes, but title doesn't. Or you don;t know who owner is..

So. How about adding a name prefix if some of the stuff are specified: Mode, Ownerm, Min / Max psr? by default before "whatever the owner chooses to name the game"

A simple format like:

P/pastmistake | <lobby name>
P/AP/pastmistake | <lobby name>
P/ARSHOM/1500+/pastmistake | <lobby name>
C/RD/-1450/pastmitake | <lobby name>

P - public
C - custom , unranked

5
It can be easy fixed with CSS/JS injections.
Works only on CHROME.

RESULT: https://prnt.sc/ru5vyu

Features:
- removed duplicate kill-events
- easy button to toggle game/kill-events ON/OFF so you see only the chat
- removed the "player name suffix" from before kill/game-events.

TUTORIAL
Step 1: Install this CHROME JS injection extension: https://chrome.google.com/webstore/detail/user-javascript-and-css/nbhcbdghjpllgmfilhnhkllmkecfmpld

Step 2:
Click on the extension icon >  ADD NEW

Step 3:
Complete the top Address with http://dota.eurobattle.net/la/forum , like in the picture: https://prnt.sc/ru5z7u

Step 4: Add this JS (left panel):
Code: [Select]
$(document).ready(function(){
//add buttons
$('.chatLog').append(`<div class="btn btn-success btn-toggle-chat-events">Game Events</div>`);
$('.chatLog').eq(0).css('max-height', '200px');
$('.chatLog').eq(1).css('max-height', '600px');

var events = [];
$('.chatLog tr').each(function(){
var isLog;

if ($(this).find('td').eq(1).find('span').length){
isLog = $(this).find('td').eq(1).find('span').html() ? false : true;
}else{
isLog = $(this).find('td').eq(1).html() ? false : true;
}

var t = $(this).find('td').eq(0).html().split(':');
var time = (+t[0]) * 60 + (+t[1]);

$(this).attr({
'data-line': $(this).index() + 1,
'data-log': isLog,
'data-time': time
});

if (isLog){
var text = $(this).find('td').eq(3).text();

if (text[0] == "["){
    var _o = 0;
    var _c = 0;
    var _n = "";
   
    for(i = 0; i < text.length; i++){
        _o += text[i] == "[" ? 1 : 0;
        _c += text[i] == "]" ? 1 : 0;
        _n += text[i];

        if (_o == _c){
            break;
        }
    }
   
    text = text.replace(_n, "");

var found = $.grep(events, (e) => {
return (text == e.text && time < e.time + 2) ? true : false;
})

if(found.length){
$(this).remove();
}else{
$(this).find('td').eq(3).text(text);
events.push({
text: text,
time: time
});
}
}
}
})


$('.btn-toggle-chat-events').on('click', function(){
$(this).toggleClass('off');

$(this).closest('.chatLog').find('tr[data-log="true"]').toggle();
});
})

Step 5: Add this CSS (right panel):
Code: [Select]
.chatLog{
position: relative;
}

.btn-toggle-chat-events{
position: sticky;
    bottom: 10px;
    left: calc(100% - 100px);
    font-size: 10px;
    word-break: break-word;
    width: 75px;
    background: #471;
    color: #000;
    padding: 6px 6px;
    border-radius: 3px;
    box-shadow: inset 0px 0px 0px 1px #FFF2;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-toggle-chat-events:after{
content: "ON";
color: #FFF;
font-size: 14px;
font-weight: bold;
display: inline-block;
width: 100%;
}

.btn-toggle-chat-events.off{
background: #900;
}

.btn-toggle-chat-events.off:after{
content: "OFF"
}


.btn-toggle-chat-events:active{
transform: scale(0.96);
}

Step 6: Click options, and make sure only "Enabled" Checkbox is selected.

Step 7: Save (or CTRL-S)

Step 8: Go to any game-log page on lagabuse

6
Suggestion Board / Fix chatlog?
« on: April 06, 2020, 16:16 »
1. How come nobody fixed the doubling of hero-kills log in chatlogs ?
Read somewhere it's how it comes from the observer/bot. But that's bullshit. Even if you can't change the bot code, you can still change/remove the doubling right when you render the HTML/chat.

It's so fucking easy I can even do it with my own injected JS code, locally.

2. Make a toggle to remove "game-events / kills" from chat
80% of chat is currently game-events/kills. Make a simple JS/Jquery toggle to hide/show the game-events.  :boy:

7
Ban Requests / national intolerance
« on: April 05, 2020, 01:31 »
ihavenoobteam
LALABAZUKA

http://dota.eurobattle.net/la/forum/index.php?action=gameinfo;sa=game;gid=6270210

27:05   LALABAZUKA   [All]   NAKED TURKISH DOGS
27:38   LALABAZUKA   [All]   good luck sucking
27:40   LALABAZUKA   [All]   erdogan's cock

8
Ban Requests / whisper flame
« on: March 30, 2020, 14:16 »
ihavenoobteam

bus4e_

https://prnt.sc/rpfari

http://dota.eurobattle.net/la/forum/index.php?action=gameinfo;sa=game;gid=6267216

After being trash and not being able to carry, he thought his support is to blame.

9
Ban Requests / national intolerance
« on: March 21, 2020, 13:59 »
1.) ihavedumbteam
2.) ryokytakuma
3.) http://dota.eurobattle.net/la/forum/index.php?action=gameinfo;sa=game;gid=6262533
4.) Heavy National intolerance

11:13   RyokyTakuma   [All]   i like pwn gipsy ppl
11:21   RyokyTakuma   [All]   cigos down
11:24   RyokyTakuma   [All]   cigo
11:49   RyokyTakuma   [All]   did u see how i kill gipsy?
12:13   RyokyTakuma   [All]   gipsy king
12:20   RyokyTakuma   [All]   retarded shit romanian
16:35   RyokyTakuma   [All]   oh my god cigo killed me
21:25   RyokyTakuma   [Allies]   i will fuck ur mom
29:25   RyokyTakuma   [All]   ez cigo
29:36   RyokyTakuma   [All]   ez ez gipsy
29:42   RyokyTakuma   [All]   moove from thjat stupid country
30:01   RyokyTakuma   [All]   i will check ur mom
30:05   RyokyTakuma   [All]   son of whore gipsy mom

30:51   ihaveDumBteam   [All]   ez loss and ban
31:08   RyokyTakuma   [All]   this gipsy make me laught
31:10   RyokyTakuma   [All]   fucking cigo
31:11   RyokyTakuma   [All]   who cares




10
Ban Requests / Racial hate
« on: March 15, 2020, 16:59 »
1 ihavedumbteam
2 aylbogan / KiniTresi

3- RACISM FLAME INSULT (gypsie)

http://dota.eurobattle.net/la/forum/index.php?action=gameinfo;sa=game;gid=6260649


25:18   AYlBOGAN   [Allies]   gipsy sex 20 $
25:25   AYlBOGAN   [Allies]   romaişnan cunts

48:06   KiniTresi   [Allies]   romanian cunt
48:07   KiniTresi   [Allies]   gypsi



11
Ban Requests / Ban [uGt]xHiTsUx xenophobe and racist
« on: February 04, 2020, 18:49 »
pastmistake
[uGt]xHiTsUx
Weird guy starts flaming me, blames "gipsies" and "romanians". Hard to post , all the lobby is full of his chat.

03:41   [uGt]xHiTsUx   gipsy
03:46   pastmistake   u sure ?
03:47   [uGt]xHiTsUx   ROMANIA
03:52   [uGt]xHiTsUx   do u know that shit country?

http://dota.eurobattle.net/la/forum/index.php?action=gameinfo;sa=game;gid=6250474

12
General Discussions / TooShade , the too shady guy from lagabuse
« on: February 02, 2020, 14:23 »
When you join last, but try to make current game your game.
Tried to invent reasons to kick me, except he DM me instead of host. This guy is legendary .. stacking and starting imbalanced games was not enough.
https://prnt.sc/qwei78

13
Ban Requests / w1ckeed_s1ck^^ afk
« on: February 01, 2020, 01:48 »
ihavebadteam
w1ckeed_s1ck^^
Goes afk 5 min at a time , 3 times .. fucking dog. Unreal how i get  4 morons.
I already posted minutes in last post, but nobody cares. Min 23, and 28 he starts afking.

http://dota.eurobattle.net/la/forum/index.php?action=gameinfo;sa=game;gid=6249512

14
Ban Requests / ban szcasap- allchat flame
« on: February 01, 2020, 01:47 »
ihavebadteam
szcasap-   
Triggered kid, starts flaming allchat.

31:06   szcasap-   [All]   better
31:07   szcasap-   [All]   go afk
31:11   szcasap-   [All]   romanian dog

http://dota.eurobattle.net/la/forum/index.php?action=gameinfo;sa=game;gid=6249512


15
Ban Requests / ban -kym- antigame
« on: February 01, 2020, 00:09 »
ihavebadteam
-kym-
lotahr 1st item on sandking .. after afk jungle :) .. + FEED and no wards

http://dota.eurobattle.net/la/forum/index.php?action=gameinfo;sa=game;gid=6249569

Pages: [1] 2