Jump to content

Recommended Posts

Posted

 

[20:35:51] teo.demis: hi there

[20:36:49] jose galvez: hello

[20:37:04] jose galvez: i'm interested on ur character

[20:37:12] teo.demis: yes i know :)

[20:37:17] teo.demis: before we start doing anything

[20:37:24] teo.demis: the only payment i can have is paypal

[20:37:33] teo.demis: i guess you have paypal?

[20:38:07] jose galvez: yes i have

[20:38:17] jose galvez: verify account

[20:38:29] teo.demis: ok to be sure you dont scam me , or i dont scam you

[20:38:41] teo.demis: can you send 0.10 dollars. or 10 cent euro

[20:38:45] teo.demis: and i cent them back to you

[20:38:52] teo.demis: to verify that you and i got paypal account

[20:38:59] teo.demis: DimitriadisMontaz@hotmail.com

[20:39:41] jose galvez: ye i can do that

[20:39:47] teo.demis: when we start talking here, im going to record everything ,as an evidence, incase you try to scam me.

[20:39:54] jose galvez: but give me a second

[20:39:55] jose galvez: brb

[20:39:57] teo.demis: ok

[20:40:07] jose galvez: i have to do something in m house

[20:40:12] teo.demis: np take your time :)

[20:48:12] teo.demis: offline? :D

[21:25:08] teo.demis: still offline?

[21:28:37] *** Call to jose galvez, no answer. ***

Posted

no idea, you should check for more

no idea, you should check for more

ofc him is scammer i go wait for lain log and see this and speak with admin for ban ip this scammer

Posted

lolservice@yahoo.com

Look out, he is scammer, and ppl from lolservice webside do not anwser for mails with question- is this their account. He will puprpose you good price for adena, and than write that: "i must have all cash to send you money" do not get on this, i lost only 100kk. Once more

lolservice@yahoo.com <---scammer

Posted

he scam me after that

 

 

Not true. He sold me 1b adena on Core then I paid him and he asked me to recommend him in the forum. Then he messaged me after one week and he wanted me to give him paypal transaction ID and some other info. None of this was part of our original deal. I told him that I will share my private info if he compensates me for my troubles. He refused, so I gave him nothing. But this was not our original deal which I met fully.

Posted

Cool story..Thats why you said give me adena and i will give you id.I give you adena and you log off from msn and game.And you didnt pay nothing and you know it.Nvm i dnt care if some1 belive me just dont give him items 1st if you dont want have trubles.

Posted

Cool story..Thats why you said give me adena and i will give you id.I give you adena and you log off from msn and game.And you didnt pay nothing and you know it.Nvm i dnt care if some1 belive me just dont give him items 1st if you dont want have trubles.

 

 

Yeah, i told you to pay me for my troubles of me sharing my personal info with you, and when you said no i stopped talking to you because there was nothing more to talk about. I didnt hide from you. If i did how did you contact me 2 weeks later?

 

 

Posted

Date: 16/05/2012

MSN:the-best-king-93@hotmail.it

Real name: natale petrone

Nick Forum: SexyDream

Nick character in game: amnesis and SexyDream

Server: Core

Topic: http://maxcheaters.com/forum/index.php?topic=239137.0

He want adena first pay and when you send he not give nothing, i trusted and now i pay..well if sell him first send money

 

 

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..