There is a huge problem in the 5165 source regarding effects: they're all client side, meaning only the person who set it off can see them! Use my code to launch an effect:
The code works like this:
Ok, so the problem is, we need to code some kind of class that will make effects appear on everyone's screens that are within range. Right now, if you set off an effect, even from a normal skill, it will only appear on your screen. This wouldn't be such a huge problem if it didn't mess with mostly all of the features in Conquer Online. =\
At the moment, these are the features being affected:
So I'm going to start us off, we all know that the "Level Up" effect is an effect that everyone can see. I'm trying to locate it right now, but if anyone is faster than i am, POST IT!
I will update this post every time we get further along.
Good Luck everyone! I'm sure we can all figure this out together!
[Only registered and activated users can see links. Click Here To Register...]
(The effect above is NightDevil which is only a transformation as seen by the Person who performed the spell)
Code:
if (Cmd[0] == "/effect")
{
Game.World.Effect = Cmd[1];
foreach (Game.Character Player in Game.World.H_Chars.Values)
{
Player.MyClient.AddSend(Packets.String(Player.EntityID, 10, Game.World.Effect));
}
}
/effect firework-1love <-- temporary effect[Only registered and activated users can see links. Click Here To Register...]
/effect M_Fire <-- Permanent Effect (Until Logout shown below)
Ok, so the problem is, we need to code some kind of class that will make effects appear on everyone's screens that are within range. Right now, if you set off an effect, even from a normal skill, it will only appear on your screen. This wouldn't be such a huge problem if it didn't mess with mostly all of the features in Conquer Online. =\
At the moment, these are the features being affected:
- Marriage Fireworks
- Skill Effects (including mount steed, shield, etc)
- Fireworks from the Market
- NightDevil and transformation effects
- Night and Day Command
- Flower Effects
So I'm going to start us off, we all know that the "Level Up" effect is an effect that everyone can see. I'm trying to locate it right now, but if anyone is faster than i am, POST IT!
I will update this post every time we get further along.
Good Luck everyone! I'm sure we can all figure this out together!
[Only registered and activated users can see links. Click Here To Register...]
(The effect above is NightDevil which is only a transformation as seen by the Person who performed the spell)