Jump to content

Recommended Posts

Posted

First of all, I open this topic to help my self and any other member here who don't know about this.

 

The Main subject of this topic is the Flow, and the cutted effects..

 

Flow: I have seen many kinds of flows and I am considering how can create them? I have created some flows but I can't think when I design, what kind of flow should I use. First, behind the render, and second up to the render. If anyone have any idea about: How can built a nice render with effects up , im all ears. (Greek Expression).

 

Cutted Effects: I have seen many effects but, they have a backround from behind that is annoying for a designer. If you put one ok , but if you put another you miss the previous. So, you need to cut the 2 images to have the effects in one image. That's is my main problem in PS. I don't know how to cut. Basically, I can't understand how to cut.

 

So, I ask for your attention in these two serius facts. If any of you want to say something, go ahead.

- Observer

Posted

Well, 6-7 months ago i was designing signatures without knowing what flow is. Although everyone was commenting 'great flow' and stuff, for me it was made subconciously. So, a simple way for you to succeed flow is to use effects and smudge them to the direction you want, either way ready stocks or brushes should do the trick.

Just like a sig i made some time ago:

iTk7FIV4OwsjF.png

 

As about the 'cut effects' i don't really know what u're talking about. If by any chance you mean the stocks you use are provided with black background, etc you just place it then delete the background with the 'Magic Eraser Tool'. If some edges seem to be kinda sharpened or whatever you can use the blur tool, or zoom an erase them with ur eraser(troublesome). Afterwards if you wanna copy that effect again, you just have to copy the previous layer you made without bg.

 

Edit: If you didn't understand a thing of what i'm talking about, pm me to explain further.

 

Posted

That's why I opened this topic to explain me.

First of all, in flow how I can do something like this? I mean with what kind of brushes..?

Second, in cutted effects, yes I don't know how to erase the black backround.. How delete it?

Posted

That's why I opened this topic to explain me.

First of all, in flow how I can do something like this? I mean with what kind of brushes..?

Second, in cutted effects, yes I don't know how to erase the black backround.. How delete it?

Well, brushes like those 'arrows' i used on the previous sig i replied, stars coming from the right upper corner to left lower corner and such stuff.

 

As about 'how to delete the black bg' like i said, i use the 'Magic Eraser Tool' though sometimes stocks are black as well as result to delete both bg and stock. In that case you should use some selection tool(like rectangle, magic wand, etc) and process carefully.

Posted

Well, brushes like those 'arrows' i used on the previous sig i replied, stars coming from the right upper corner to left lower corner and such stuff.

 

As about 'how to delete the black bg' like i said, i use the 'Magic Eraser Tool' though sometimes stocks are black as well as result to delete both bg and stock. In that case you should use some selection tool(like rectangle, magic wand, etc) and process carefully.

 

I did it with the cutted effects. But, its not a perfect result. It seems like a pieces.

Posted

I did it with the cutted effects. But, its not a perfect result. It seems like a pieces.

It's not an easy task, even pro's have some difficulties on that part. Keep trying till u get a better result.
Posted

You can use the pen tool aswell.Then if u see that you didn't make it perfect hold control and click the layer.After go to select,modify, and check the selection u need at 2 radius.

Then delete the old layer and keep the new.

Posted

You can use the pen tool aswell.Then if u see that you didn't make it perfect hold control and click the layer.After go to select,modify, and check the selection u need at 2 radius.

Then delete the old layer and keep the new.

 

I've seen guide about pen tool and cut a image. That way is the most difficult for me. Better, with magic eraser tool..

Btw, I don't know what to look for in net for improving my skills. I'm doing good tags sometimes, but not all the times..

Any ideas what to download for move on for that simple style?

Posted

Dude you just need imagination

 

Well, maybe I don't have imagination lol ? :/

The fact is how the effects agreed together.

Posted

Flow is not that hard to achieve.

I really don't put any effort on it. You just have to make everything pointing at your focal.

I mean, the focal must be brighter and more sharpened than the background and of course, it should attract your eye's attention in first place.

However, if you really want to work on the flow, then you have to come up with things like the brushes voqus mentioned or something else that would improve the space that surrounds your focal point.

 

About the effects, you just have to change the mode to lighten/color dodge/screen/linear dodge and so on :D

Posted

Yes, but I think, I don't have the proper brush packs.. Any idea for a good brush pack which I can work ?

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

    • what pack you use  send me on discord for it
    • package custom.events.RandomZoneEvent; import java.io.File; import java.util.ArrayList; import java.util.List; import java.util.Random; import java.util.concurrent.ScheduledFuture; import org.w3c.dom.Document; import org.w3c.dom.Node; import org.l2jmobius.commons.threads.ThreadPool; import org.l2jmobius.commons.time.SchedulingPattern; import org.l2jmobius.commons.time.TimeUtil; import org.l2jmobius.commons.util.IXmlReader; import org.l2jmobius.gameserver.managers.ZoneManager; import org.l2jmobius.gameserver.model.StatSet; import org.l2jmobius.gameserver.model.actor.Creature; import org.l2jmobius.gameserver.model.actor.Npc; import org.l2jmobius.gameserver.model.actor.Player; import org.l2jmobius.gameserver.model.quest.Event; import org.l2jmobius.gameserver.model.zone.ZoneId; import org.l2jmobius.gameserver.model.zone.ZoneType; import org.l2jmobius.gameserver.model.zone.type.RandomZone; import org.l2jmobius.gameserver.util.Broadcast; /** * Random Zone Event - Activates one random PvP zone temporarily. No modifica la clase de la zona: usa flags PvP en runtime. * @author Juan */ public class RandomZoneEvent extends Event { private static final String CONFIG_FILE = "data/scripts/custom/events/RandomZoneEvent/config.xml"; private static int EVENT_DURATION_MINUTES = 15; private static boolean _isActive = false; private ScheduledFuture<?> _eventTask = null; private final List<ZoneType> _availableZones = new ArrayList<>(); private ZoneType _activeZone = null; public RandomZoneEvent() { loadConfig(); loadZones(); registerZoneListeners(); } /** * Registra listeners a TODAS LAS ZONAS random */ private void registerZoneListeners() { for (ZoneType zone : _availableZones) { addEnterZoneId(zone.getId()); addExitZoneId(zone.getId()); LOGGER.info("[RandomZoneEvent] Registered listener for zone: " + zone.getName()); } } private void loadConfig() { new IXmlReader() { @Override public void load() { parseDatapackFile(CONFIG_FILE); } @Override public void parseDocument(Document doc, File file) { forEach(doc, "event", eventNode -> { final StatSet att = new StatSet(parseAttributes(eventNode)); final String name = att.getString("name"); for (Node node = eventNode.getFirstChild(); node != null; node = node.getNextSibling()) { if ("schedule".equals(node.getNodeName())) { final StatSet attributes = new StatSet(parseAttributes(node)); final String pattern = attributes.getString("pattern"); final SchedulingPattern schedulingPattern = new SchedulingPattern(pattern); final StatSet params = new StatSet(); params.set("Name", name); params.set("SchedulingPattern", pattern); final long delay = schedulingPattern.getDelayToNextFromNow(); getTimers().addTimer("Schedule_" + name, params, delay + 5000, null, null); LOGGER.info("[RandomZoneEvent] Event " + name + " scheduled at " + TimeUtil.getDateTimeString(System.currentTimeMillis() + delay)); } } }); } }.load(); } private void loadZones() { for (ZoneType zone : ZoneManager.getInstance().getAllZones(RandomZone.class)) { if ((zone.getName() != null) && zone.getName().toLowerCase().startsWith("random_zone")) { _availableZones.add(zone); LOGGER.info("[RandomZoneEvent] Loaded zone: " + zone.getName() + " (id=" + zone.getId() + ")"); } } LOGGER.info("[RandomZoneEvent] Total random zones loaded: " + _availableZones.size()); } @Override public void onTimerEvent(String event, StatSet params, Npc npc, Player player) { if (event.startsWith("Schedule_")) { eventStart(null); final SchedulingPattern schedulingPattern = new SchedulingPattern(params.getString("SchedulingPattern")); final long delay = schedulingPattern.getDelayToNextFromNow(); getTimers().addTimer(event, params, delay + 5000, null, null); LOGGER.info("[RandomZoneEvent] Rescheduled for " + TimeUtil.getDateTimeString(System.currentTimeMillis() + delay)); } } @Override public boolean eventStart(Player eventMaker) { if (_isActive) { if (eventMaker != null) { eventMaker.sendMessage("RandomZoneEvent already active."); } return false; } if (_availableZones.isEmpty()) { Broadcast.toAllOnlinePlayers("[RandomZoneEvent] No zones configured."); return false; } _isActive = true; Broadcast.toAllOnlinePlayers("⚔️ Random Zone Event has started!"); _eventTask = ThreadPool.schedule(this::activateRandomZone, 5_000); return true; } private void activateRandomZone() { _activeZone = _availableZones.get(new Random().nextInt(_availableZones.size())); _activeZone.setEnabled(true); Broadcast.toAllOnlinePlayers("🔥 Random Zone Event: " + _activeZone.getName() + " is now PvP for " + EVENT_DURATION_MINUTES + " minutes!"); _eventTask = ThreadPool.schedule(this::eventStop, EVENT_DURATION_MINUTES * 60 * 1000L); } @Override public boolean eventStop() { if (!_isActive) { return false; } _isActive = false; if (_eventTask != null) { _eventTask.cancel(true); _eventTask = null; } if (_activeZone != null) { _activeZone.setEnabled(false); Broadcast.toAllOnlinePlayers("🏁 Random Zone Event ended. " + _activeZone.getName() + " is back to normal."); _activeZone = null; } else { Broadcast.toAllOnlinePlayers("🏁 Random Zone Event ended."); } return true; } @Override public void onEnterZone(Creature creature, ZoneType zone) { if (!_isActive || (_activeZone == null)) { return; } if ((zone == _activeZone) && creature.isPlayable()) { creature.setInsideZone(ZoneId.PVP, true); if (creature.isPlayer()) { creature.sendMessage("Esta zona está en modo PvP temporalmente."); } } } @Override public void onExitZone(Creature creature, ZoneType zone) { if (!_isActive || (_activeZone == null)) { return; } if ((zone == _activeZone) && creature.isPlayable()) { creature.setInsideZone(ZoneId.PVP, false); if (creature.isPlayer()) { creature.sendMessage("Abandonaste la zona PvP temporal."); } } } @Override public boolean eventBypass(Player player, String bypass) { return true; } @Override public String onEvent(String event, Npc npc, Player player) { return super.onEvent(event, npc, player); } @Override public String onFirstTalk(Npc npc, Player player) { return null; } public static void main(String[] args) { new RandomZoneEvent(); } } i have this but its not working
    • ZonePvPSpawnBossRadio=0 ZonePvPSpawnBossBarakiel=0 at the Customs.ini in L2Server folder. Im prety sure this is it because i had the same problem with you in cruma 1 floor for example and i couldn't fix it but i fixed it finally by changing these 2 lines
    • Siege Reward Start PM Msg Rework Config root BossDieAnnounce and BossDieSound in the L24Team.properties and Config.java files for global raid boss death notifications and sounds. Adds a new reward_list table to the DB.sql file to track castle rewards. Improves character creation logic for thread safety and validation. Adds extensive state checks to the RequestEnchantItem method to prevent enchantments during inappropriate player states. Fixed auto-attack animation bug (there was no attack animation, only damage animation) Clean Code Other fixes I forgot to list! Java 14 Fixed issue where deleting a character would prevent it from leaving the screen or being removed, or even after a delete CD (it would only exit when re-logging in or creating a new character). Added Premium System from the other C2 project (Needs testing and improvement). Added the "Improved" Community Board (incomplete).
  • 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