I want To Make his Monster When Appeared To Put a System MSG About Appeared ...
Ex..
TeratoDragon appear In TeratoDragon quest !!!
Ex..
TeratoDragon appear In TeratoDragon quest !!!
Quote:
O.o Removed !!
Sorry Dude !!
So what now ??
i want a System Msg For This Monster !
got it ? and dont think ever that we are going to give u code and spoon feed noobs like uQuote:
whats the Fk are u doing ... y are u giving us codes that arent related to what u need to know ?? what u need to check is Map part ( check Monster Revive Part ) and add case if the monster Spawned is Superboss send system message to every online player ... super easy
y did u add 50 Random picking since u only handled 3 of them ?
he wont get it as he is beginer ( obviously )Quote:
Sending a new instance of the message class (packet 1004) to each client in the client pool, probably defined in the server's kernel.cs file, will do the trick. If that wasn't enough information, then you need to learn C# and so something at a much more basic level before attempting to send packets to players.
what are u saying.. i helped him in my 1st Post ( and its Enough for him to solve his issue ) and he didnt understand that so y do u even bother posting smthing ( onTopic ) that wont be ever understood by the OP ...Quote:
Chill out. I understand that, I'm just not being in his face about it. You need to lay off of him.
You and people alike are why the community fails, So arrogant.Quote:
what are u saying.. i helped him in my 1st Post ( and its Enough for him to solve his issue ) and he didnt understand that so y do u even bother posting smthing ( onTopic ) that wont be ever understood by the OP ...
i h8 it when sm1 missunderstand me .. what i meant by he wont ever get it i meant in this period of time as its impossible for beginer to work on this stuffs (which is true) and you are right i wont be good at english in this period of time as i got no time for English Courses (for now).. i never said that sm1 would never become smthing in Conquer Developing neither me nor u can judge others ...and you are saying that ppl like me are causing the community to fail (which is untrue) cuz i help others with what i can and take alook at ur negativity u urself posted a comment just to prove smthing offtopic .. you should have posted an answer to the OP instead of that so its you guyz who are causing the Community to fail not me and for me i miss alot of stuffs and never pretended to be the best just working hardQuote:
You and people alike are why the community fails, So arrogant.
Please, shutup.
You said you helped him in your first post? You started off with "whats the Fk are u doing"
"that wont be ever understood by the OP....." I'm literally horrfied from your attitude? How the fuck can you say that? Many people such as ImmuneOne and Korvacs probably thought that about me at one stage..(They thought it, at one point), Faily sure Nullable still think I wont be able to get anywhere in C#, But I'm pretty happy with where I've gone with it.
So don't say "he wont ever get it", You wont ever get English? Do you agree with me? no. stfu.
#edit
if (Database.MonsterInformation.MonsterInfos.ContainsKey(monsterID))
{
Database.MonsterInformation mt = Database.MonsterInformation.MonsterInfos[monsterID];
mt.RespawnTime = respawn + 5;
mt.BoundX = X;
mt.BoundY = Y;
mt.BoundCX = XPlus;
mt.BoundCY = YPlus;
if (Database.MonsterInformation.MonsterInfos.ContainsKey(monsterID))
{
Database.MonsterInformation mt = Database.MonsterInformation.MonsterInfos[monsterID];
{
if (mt.Name == "TeratoDragon")
{
mt.RespawnTime = respawn + 5;// 5 Seconds
mt.BoundX = X;
mt.BoundY = Y;
mt.BoundCX = XPlus;
mt.BoundCY = YPlus;
Network.PacketHandler.WorldMessage(" The TeratoDragon Has Respawned");
}
if (mt.Name == "SnowBanshee")
{
mt.RespawnTime = respawn + 5;// 5 Seconds
mt.BoundX = X;
mt.BoundY = Y;
mt.BoundCX = XPlus;
mt.BoundCY = YPlus;
Network.PacketHandler.WorldMessage(" The SnowBanshee Has Respawned");
}
if (mt.Name == "ThrillingSpook")
{
mt.RespawnTime = respawn + 5;// 5 Seconds
mt.BoundX = X;
mt.BoundY = Y;
mt.BoundCX = XPlus;
mt.BoundCY = YPlus;
Network.PacketHandler.WorldMessage(" The ThrillingSpook Has Respawned");
}
mt.RespawnTime = respawn + 5;// 5 Seconds
mt.BoundX = X;
mt.BoundY = Y;
mt.BoundCX = XPlus;
mt.BoundCY = YPlus;
}