Jump to content

Recommended Posts

Posted

Hello,

since now i have free time and i've finally decided that i'll start up my personal webdesign workshop. I've dedicated most of my time in creating webdesigns,logos,and photoshop works.

 

What i'm going to offer you?

- I offer you a chance to get the webdesign you desired for,on the most cheap price you'll ever see.

- I offer you much bonuses + discounts on all my work,depend on the situation.

 

What is my work until now?

- Until now i've proved myself being a average level Photoshop Designer.

- I've created websites,logos,signatures and i've over 3 years experience in photoshop.

 

Do i have previews of my website designes?

- Yes i do,i'll post them below in the topic.

 

Am i serious,can i be trusted?

- You can ask this in the topic,the other members might recommend me,or might hate me,it depends on them. I guarantee safety work,and fair trades.

 

 

What i'm offering in my workshop?

- In the workshop you'll be able to buy these stuffs:

 

1. Webdesign.

- Requesting webdesign,you'll have to include information about the theme you desire,color desired,or specify if you want me to pick them.

 

2. Forum/Website Logos

- You can request one of these,but be specific on what you desire.

 

Pricing of my work:

 

1. Webdesign Packet  (€20.00 EUR) - Simple Webdesign,having 1 home page. You'll recieve it in .psd file,unless you've bough the Webdesign + Coding packet.

2. Webdesign + Coding Packet  (€30.00 EUR) - Simple Webdesign,having 1 home page. You'll recieve it in .psd file,unless you've bough the Webdesign + Coding packet.

3. Logo for Forum/Website Packet  (€15.00 EUR) - You recieve a logo,containing the .psd file aswell.

 

Bonuses you might get:

 

- If you bought 1 or more services,you'll get simple discount of 5% on the final price + free support for later use.

- If you bought more than one webdesign + coding (Price going over €40.00 EUR+) you're getting discount of 10% on the final price.

 

P.S.: I accept payment only trought paypal or paysafecards. Other way of payments aren't acceptable for my work.

 

 

Previews of my current work:

 

Header for Forum

 

logohea.png

 

Intro page for a gaming network

 

 

Webdesign for a L2Server

 

 

For paying methods contact me below!

 

Thanks for your time. If you have questions,make a post below. Please do not spam! My website is coming soon,until it,i'll use these forums.

 

Contact me trought PM here or on my facebook: www.facebook.com/anya.sundance Thank you!

 

 

Posted

To whoever i'm needed,just click one of the buttons you desire and you'll get my help.

 

If you wnat to contact me either send me a forum PM here,or add me on facebook and send message.

 

www.facebook.com/anya.sundance

Posted

heh you told about unique designs and you webs contains black background (sometimes you put there any image from network). btw you're showing only jpg, not ready web site. Make a prove that you can make it ... It's funny to hate everyone who's competitor.

Posted

That's don't change anything cause you don't know how to code it with texture. Report? I present my opinion same like you in mine topic.

For fuck's sake...She's selling..what's yer fvckin' problem?

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

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