Already been released cant remmeber by who but it was in a thread, And obiusly hes copying he has no Skills in C# Coding, obius from the first day he showed him self in this forums.
Already been released cant remmeber by who but it was in a thread, And obiusly hes copying he has no Skills in C# Coding, obius from the first day he showed him self in this forums.
And by the way???
Almost all LOTF and C# codes look like each other, so really if he have made this it can be very simular to another code
ex.
When coding NPC's they are almost same all
They dont look different at coding
Wat is this? Another blade noob? . dont reply to my posts
thanks.
Wtf? I haven't even said anything in this thread until now and you mention my name? And no that is not me you ******. Go ask for more help on how to translate TQ Binaries. Yeah that's right, it's me.
And by the way???
Almost all LOTF and C# codes look like each other, so really if he have made this it can be very simular to another code
ex.
When coding NPC's they are almost same all
They dont look different at coding
Totally wrong >_>, same event/action can be done using different codes.
Let me say something like hello what is your name.. ( always the first tut in all languages XD )
Someone can do it like this:
Console.Write("Hi! What is your name?: ");
string Inp = Console.ReadLine();
Console.WriteLine("Hi, " + Inp);
--------------------------------------------------------- Another one:
Console.Write("Hi! What is your name?: ");
Console.WriteLine("Hi! {0}", Console.ReadLine());
Did the same job, different code.
This has been released before, and it's not complete.
@Samurai,
I'm pretty sure you can't code. People tempt to call themselves a "coder" if they're able to make small edits to LOTF or any other source. Just a few people on this forum can code, not sure how many and who can.
[Release] Revive Command 08/02/2010 - CO2 PServer Guides & Releases - 2 Replies This is a perfect revive command to my knowledge I've tested it multiple times in my server and had no problems. I'm currently working on remaking all commands and releasing them sometime in the near future. This is for a 5165 source. Hope you guys like it :D
Command:
/revive
/revive (players name)
#region Revive
if (Cmd == "/Revive" || Cmd == "/revive")
[Release] Revive Potion 07/24/2010 - EO PServer Guides & Releases - 9 Replies This is a simple release from me.. this potion use to revive all the dead eudemon in your eudemon bag.Can be use anywhere except legion land.
Screenshot
http://i37.servimg.com/u/f37/12/57/38/57/111.jpg
http://i37.servimg.com/u/f37/12/57/38/57/211.jpg
[Release]How to FIX stamina at revive[CoEmu] 08/13/2009 - CO2 PServer Guides & Releases - 3 Replies If work +thanks
(Use Ctrl+F for find the codes cited)
File: PacketProcessor.cs
Below it: CSocket.Client.CurrentHP = CSocket.Client.MaxHP;
Add:
CSocket.Client.CurrentStam = 100;
Below it: CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.CurrentHP, Struct.StatusTypes.Hp));
Add:
@revive command 02/07/2009 - CO2 Private Server - 12 Replies hi im pete,
this is not a release just a question , and i dont even know if this code works never tested ( ye its for LOTF , if you have a problem dont post xD )
if (Splitter == "@revive")
{
foreach (DictionaryEntry DE in World.AllChars)
{
if (MyChar.Alive = false)
...