Jump to content

Recommended Posts

Posted

In summary:

1 I made a new account on MXC to buy an account from someone and then extort money.

2 Do you deny that you have a second VIP account and I just proved that they have, and he is to admit

3 Yes, you can insert logs of our conversations on Skype because I have nothing to hide, everything went well and also you told that everything works.

4 If you want me to CI gave the money to my Paypal shed just give the password to the account and the email and I will send you back the money.

 

I have so much to say on this topic scammers

 

 

Oh god... as Im saying its my only one acc on this forum... this will be proved soon as moderators will check that...

All went well until today then  u changed password coz u gave me wrong reg email...

Posted

Hello again guys... I'm back home now...

Firstly I want to sorry about my English because it's not my mother language.

This was talk about Spike.. He scammed me for 45 EUROS and 100 USD I spent for RP. I changed email and password nicely... then I bought RP and I changed nickname and region... and yesterday I saw password is incorrect and region is changed again... and I saw he's playing with that acc he sold to me at lolking match history ..

Here logos so you can feel real situation: http://imgur.com/a/7WToN

Feel free to ask questions or more info.. I will give everything to punish this scammer.. You will see at skype logos I asked him to make his IP adress screenshot so here it is: http://imgur.com/bqJBPZW (dunno if its right one).

Now I will pm RIOT with details so maybe they will BAN his acc because its illegal to sell acc... and I will try to refund these 45 euros .. but I know that these 100 USD I spent for RP points are dead. And this is all about SPIKE scammer..

Posted

many ppl have complain about spike so i guess something wrong happen in all that times!!!!

i smell pure scam by this gay....

ban the trash of the forum!!!!

he was an old scammer as i know..and UserOne have a lot of proves for this.

Posted

proves of what ? of that he said everythink is fine everythink work ? and i trade with him well... he did shit and now trying to get 45 euro to spent other money on fucking lol

Posted

proves of what ? of that he said everythink is fine everythink work ? and i trade with him well... he did shit and now trying to get 45 euro to spent other money on -beep-ing lol

 

stfu fucking scammer you need to get perma ban in the account ...

Posted

i dont care if u belive me or not... already his screens dont prove nothink so... i got money he got account... thats the all proves what he put here...

Posted

I can't refund money because it was sent as gift or so...  it's saying "We're sorry, but this transaction cannot be disputed because it is not a purchase of goods or services. Please contact the recipient directly." :(

Guest
This topic is now closed to further replies.



  • Posts

    • I think that solves the freeze thing, anyway great share! 
    • Introducing: Daily & Weekly Missions!   I've released a major panel update with a new Missions system and expanded language support.   Players can now complete daily and weekly missions directly through the panel and claim rewards such as balance or items. Mission progress is tied to in-game activity and supported panel actions, and the update also adds a dedicated Missions page, dashboard mission previews, claimable mission indicators, and full admin tools for creating and managing missions.   The Roll page now shows the potential reward drops below the roll container.   Alongside this, I’ve expanded the panel’s language support with new locale options, including Bulgarian, Czech, Georgian, Lithuanian, Polish, Romanian, Japanese, Simplified Chinese, and Traditional Chinese.     The Demo is now updated with the new features for you to try out!
    • I sell complete packs. If you want to add an item, NPC, etc., you have to do that yourselves. Your friend bought the pack; he's the one who needs to configure his server type. He received what he bought as agreed, and I'm saying this without knowing who you're talking about, because anyone who buys something receives what was agreed upon.   Regards. mmmmm L2Velmore ????   If that's the one, I see everything went well... if I remember correctly you were crying over $100, I gave you a better price, and I suppose you made thousands with that... And you're still coming back to complain? :=)
    • I know many people have struggled with this specific issue and had trouble setting up the correct behavior for Toggle skills in aCis. By default, toggles interrupt the player's movement (retail-like), which often feels clunky to players who prefer a smoother, more modern experience. I've prepared a clean solution that eliminates this "freeze" and allows for fluid movement while toggling your auras. Below is the code on how to achieve this. Hope it helps! Changes in PlayerAI.java: Modified doActiveIntention to properly update the active state without stalling. Removed the forced stop() during toggle casting. Added a MoveToLocation broadcast to ensure other players see your movement correctly (prevents visual "teleporting" or desync). Best regards 😃 diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java index ba0425a..1b2658d 100644 --- a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java +++ b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java @@ -28,6 +28,7 @@  import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;  import net.sf.l2j.gameserver.network.serverpackets.AutoAttackStart;  import net.sf.l2j.gameserver.network.serverpackets.ChairSit; +import net.sf.l2j.gameserver.network.serverpackets.MoveToLocation;  import net.sf.l2j.gameserver.network.serverpackets.MoveToLocationInVehicle;  import net.sf.l2j.gameserver.network.serverpackets.MoveToPawn;  import net.sf.l2j.gameserver.network.serverpackets.StopMove; @@ -159,7 +160,10 @@      @Override      public synchronized void doActiveIntention()      { -        doIdleIntention(); +        prepareIntention(); +        _currentIntention.updateAsActive(); +        if (!getActor().isMoving()) +            thinkIdle();      }            @Override @@ -280,8 +284,9 @@                    if (skill.isToggle())          { -            getActor().getMove().stop();              getActor().getCast().doToggleCast(skill, target); +            if (getActor().isMoving()) +                getActor().broadcastPacket(new MoveToLocation(getActor()));          }          else          { https://pastebin.com/twZujZ3Y
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..