Jump to content

Recommended Posts

Posted

'Cried' cause i lost game due to pvp.net bug

they rewarded me :P

 

cant belive it (give me a proof and imma cry@riot too <3)

Posted

i am new on LoL but i think i like it and i will continue to play it if some one wanna can add me like frend :D shady91 EU WEST can make frendly games.. :D

Posted
I tried to join a ranked game today( ~8.50 GMT+2 3/12/2011) and right after i connected , it gave me a message that my DUO mate has problems connecting the game.

It kicked me out of champion select .As i was out(like not in game,nothing to come back) i restarted the client .

 

Result? -10 elo

 

What's that rly?

ChronopolisCC, Dec-12 17:18 (PST):

 

Hello Petros,

 

Ah, sorry for the confusion. As a player I share your frustration with unfair losses. Unfortunately the system disallows the removal of leaves or losses or the manual editing of Elo. It was built this way in an effort to prevent corruption. We are working to improve it to better accommodate technical issues though. We realize many of these are out of your control, and we don't want them to reflect negatively upon you. I have added an IP Boost to your account to compensate for the inconvenience.

 

I would definitely have your friend submit a Support Ticket so we can help them prevent further disconnects in the future. I'm sorry you ran into this issue, and wish you luck in all future matches.

 

Game on!

Son Golin, Dec-26 15:08 (PST):

 

Hello Petros,

 

I see that issue, my colleague credited the account associated to the email address you submitted to the support site.

 

Can I get your Account Name, Summoner Name, and Email Address (associated to your game account) so I can properly credit your IP Boost for you?

 

Also, please provide 5 alternate Summoner Names for Finitø. Our system will detect a special character in your name and change it; unfortunately special characters has caused stability issues in the client for some players.

Posted

in 3 weeks .. i was 600 elo go to 800 down to 700 and now 800 again .. -beep-ing elo hell...

You think that 1000/1250 or even 1500 there are really good players? There is Elo hell even in 1500+

Now, about your elo, it means smth. If you're too good then, you could win the 1st matches that it gave you 45 elo. If you're too good, you could carry 'em. The thing that you're playing in 600-800 elo means a lot.

Posted

You think that 1000/1250 or even 1500 there are really good players? There is Elo hell even in 1500+

Now, about your elo, it means smth. If you're too good then, you could win the 1st matches that it gave you 45 elo. If you're too good, you could carry 'em. The thing that you're playing in 600-800 elo means a lot.

 

I won the first match (ofc i carried the team bla bla)

After the first match i've got 7 defeats in a row (in every single match i had atleast 1 leave or trolls)

And now im fine (or i would be if riot will give me back my 24 lost elo cause of the stupid patch errors)

Posted

I won the first match (ofc i carried the team bla bla)

After the first match i've got 7 defeats in a row (in every single match i had atleast 1 leave or trolls)

And now im fine (or i would be if riot will give me back my 24 lost elo cause of the stupid patch errors)

Yeah whatever.

Everyone has an excuse when he's losing a game. But when you win a match you post it here and you thing that you're pro.I'm not talking 'bout you but in general.

Ye I know sometimes you're losing games cause of retarded kids and drunked ppl who stayed and play at night or morning or w/e.

But COME ON! He's 600 elo. No excuses 'bout that. He's just a bad player and he worth it.

 

EDIT: About me, I'm playing in 1600 and there are many ppl who deserve lower thatn 700 elo. So they get carried, cause they were smart. If someone playing a ranked, and he said "I can play support" and he's picking a 2nd AD/AP Carry or whatever, then he deserve to lose. You think that in games on 500 elo they asked about support/ad/jungle etc?

Posted

9/10 ranked gAmes(prove with videos from lol recorder) with +1 leaver.i won the 10th game yesterday and got +6 elo. now i lost 2 more games one with feeding mundo trollpick 2/17 and my last defeat shaco leaver and jarvan outfarmed.elo hell ftw 1120elo

Posted

9/10 ranked gAmes(prove with videos from lol recorder) with +1 leaver.i won the 10th game yesterday and got +6 elo. now i lost 2 more games one with feeding mundo trollpick 2/17 and my last defeat shaco leaver and jarvan outfarmed.elo hell ftw 1120elo

So, Noble is the perfect example. Cuase I'm playing with him and I can tell that he deserve smth more than 1120, like ppl who are in 600 must be even lower, so they can't play ranked games anymore.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • Posts

    • First, don't really follow the "main voice", moreover if you consider it an hobby. Simply do what you want, you got only one life so use it as you want. If you make it an hobby, it's exactly like piano, or velo - only practice makes you better.   Secondly, how do you learn things ? It's actually a really important question, since some can simply be scholar, read books (theory) then practice ; and some simply can't read books. I'm the second type, I hated school, I find it boring - my knowledge in Java comes from try-and-fail. You improve your coding style every year or so, I can myself rewrite my own code (which I already considered top-notched) after a while. You always learn something new - even if Java barely evolves. L2J is a fun way to learn programming, it's a giant sandbox where you can edit anything, and I believe it should be taken as it.   My own way of learning was as follow : Add existing customs, no matter what they are : the point is to know main classes used by L2J / customs. L2J is barely Java knowledge ; the true knowledge is to know WHAT to search in WHICH location (what I call, organization). You have to understand than EVERYTHING you think already exists, in a form on another, in the source code. A custom is only the association of the different mechanisms you found "here and there", glued together in a proper goal. Once you know main classes to edit, and the customs you added are compiling fine, the main point is to know WHAT exactly you DID. Try to understand WHY and WHERE you actually copied the code. Third point would be to MANIPULATE the customs you added in order to fit your wish. First edit little values, then logic conditions ; eventually add a new Config, or a new functionality to the custom. Fourth point would be to begin to craft your own ideas. Once again, EVERYTHING already exists, in a form or another. You want a cycled event ? You got Seven Signs main task as exemple. Npc ? Search any type of Npc and figure out what it does. Fifth point would be to understand Java - mostly containers (WHAT and WHERE to use them), variables types and main Java mechanisms (inheritance, static modifier, etc). You should also begin to cut your code into maintainable classes or methods. Java can actually run without optimization, but bigger your ideas, more optimized and well-thought it should be. It's direct saved time in the future, and you would thank yourself doing so. Main tips : ALWAYS use any type of versioning system - GIT or SVN. It allows to save your work, step by step and eventually revert back anytime you want if you terribly messed up. L2J is 80% organization knowledge, and 20% Java knowledge. Basically, if you know WHAT and WHERE to search, if you aren't dumb, it's easy to replicate and re-use things. Cherry on top is to use a already good coded pack to avoid copy-paste crap and get bad habits. Avoid any type of russian or brazilian packs, for exemple - their best ability is to leak someone's else code. Obviously you need some default sense of logic, but Java and programming in general help you to improve it.   Finally, most of your questions could be solved joining related Discord (at least for aCis, I can't speak for others) - from the moment your question was correctly asked (and you seemed to search for the answer). My community (and myself) welcomes newbies, but got some issues with noobies.   The simpliest is to try, fail and repeat until you succeed - it sounds stupid, but that's basically how life works.   PS : about Java ressources, before ChatGPT, it was mostly about stackoverflow website, and site like Baeldung's one. With ChatGPT and alike, you generally double-cross AI output to avoid fucked up answers. Also, care about AI, they are often hallucinating really hard, even today. They can give you complete wrong answer, you tell them they are wrong, and they say "indeed, I suck, sorry - here's a new fucked up answer". You shouldn't 100% rely over AI answer, even if that can give sometimes legit answers, full code or just skeletons of ideas.   PPS : I don't think there are reliable ressources regarding L2J itself, also most of the proposed code decays pretty fast if the source code is actually maintained (at least for aCis). Still, old coded customs for old aCis sources are actually a good beginner challenge to apply on latest source.
    • WTS: - AQ - Baium - Zaken  - Frintezza - Vesper Fighter Focus Fire Element   pm for detalis
    • We have the best price! L2Reborn.org Signature x1 Franz NEW!! 1KK = $20 HURRY TO BUY AT THE TOP PRICE discord - adver745645
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock