Elĩţέ Găмέrś™
March 29, 2024, 07:31:25 am
Welcome, Guest. Please login or register.

Login with username, password and session length
News: Welcome to Elite Gamers Community have fun and contribute to the community and be Rewarded.
 
  Home Help Search Arcade Gallery Links Staff List Login Register  
  Show Posts
Pages: [1] 2 3
1  Help Desk / Important Announcements / Re: So sorry for Knight on: December 07, 2007, 03:07:18 am
But Knightraider is jesus so he shall return from the dead on monday  Cool
2  Help Desk / Important Announcements / Re: So sorry for Knight on: December 07, 2007, 03:05:11 am
Bad news...Knightraider recently died last night R.I.P his soul he was a good man.
3  Help Desk / Introductions / Re: Hi! on: December 05, 2007, 10:36:32 pm
Hiya and Welcome  Grin
4  Your Art Work / Images / Re: Me running for Prime Minister on: December 05, 2007, 08:38:09 pm
Bush sucks dick k? I own
5  Your Art Work / Images / Re: My Girlfriend on: December 05, 2007, 08:37:30 pm
Lol you son of a b***h!!!!!!!!
6  Your Art Work / Images / Me running for Prime Minister on: December 05, 2007, 08:25:12 pm
Here it is me running for Prime Minister heres what people marched with  Grin


7  Your Art Work / Images / My Girlfriend on: December 05, 2007, 08:22:52 pm
Here she is boys, Dont get to excited.


8  Conquer Online / Client Edits / Re: Bloody Mary on: December 05, 2007, 02:43:17 am
Nice looking forward to seeing them.
9  Application Section / Apply To Be A Forum Moderator / Re: My application to become mod of the Conquer section-Accepted on: December 03, 2007, 11:54:17 pm
And I completely agree age does not matter..Its the experience and the maturity Im 15 and Unidentical is like i forget but hes younger than 15
10  Conquer Online / Tutorials / Re: [Tut] How to make a CO private server on: December 03, 2007, 09:19:50 pm
Well done and i fixed up the password, Very helpful post. Grin
11  Conquer Online / Scripts / Re: Hercules skill on: December 03, 2007, 08:31:05 pm
Never said they were c#, People use delphi as well I have heard rumors theres a source out there

#Knightraider
12  Help Desk / Security Help / Scanners! on: December 03, 2007, 06:35:21 pm
Here you go this is a safe effective scanner to scan single files you find of the NET:

http://virusscan.jotti.org/

For other scanners like AVG just google it and get the free edition security is important on the net so get yourself up to date!

Unidentical Reccomends this:

www.VirusTotal.com  Grin
13  Conquer Online / Scripts / Market Controller on: December 03, 2007, 06:33:08 pm
Made by Spare2 big thanks to him!

Code:
    45:
    begin
      case OptionID of
         0:
           begin
            AddNPCDialog('Would you like to exit market? ');
            AddNPCOption('Yes'1);
            AddNPCOption('Nothing, Just passing by', 255);
            NPCFinish;
           end;
         1:
           begin
            TeleportPlayer(1002, 400 400);
            NPCFinish;
           end;
       end;
    end;
14  Conquer Online / Scripts / Some Spellbooks on: December 03, 2007, 06:31:48 pm
Made by Joedake Big thanks to him!

[Flying Moon]

Code:
    150243: // FlyingMoon
    begin
    for i := 0 to Length(Client.Character.WeaponProfs)-1 do
    begin
         if (Client.Character.Profession >= 23) and (Client.Character.Profession <= 25) then
       begin
      for i := 0 to Length(Client.Character.Spells)-1 do
      begin
       if Character.Spells[i].ID = 1320 then
       begin
        Client.SendPacket(MessagePacket('SYSTEM',    Client.Character.Name, 'You already know this spell.',    Client.MessageID, CT_TOP, clRed));
        Exit;
       end;
      end;

      Client.SendPacket(LearnSpellPacket(1320, 0, 0));
      SetLength(Client.Character.Spells, Length(Client.Character.Spells)+1);
      eb := Length(Client.Character.Spells)-1;
      Client.Character.Spells[eb].ID := 1320;
      Client.Character.Spells[eb].Level :=0;
      Client.Character.Spells[eb].Exp := 0;

    end else
    begin
      GiveItem(Item.ItemID, 0, 0, 0, 0, 0);
      Client.SendPacket(MessagePacket('SYSTEM', Client.Character.Name, 'You are not a warrior.', Client.MessageID, CT_CENTER, clRed));
    end;
    end;

[Thunder]

Code:
    150243: // Thunder
    begin
    for i := 0 to Length(Client.Character.WeaponProfs)-1 do
    begin
         if (Client.Character.Profession >= 130) and (Client.Character.Profession <= 145) then
       begin
      for i := 0 to Length(Client.Character.Spells)-1 do
      begin
       if Character.Spells[i].ID = 100 then
       begin
        Client.SendPacket(MessagePacket('SYSTEM',    Client.Character.Name, 'You already know this spell.',    Client.MessageID, CT_TOP, clRed));
        Exit;
       end;
      end;

         if (Client.Character.Mana => 20) then
      begin
      Client.SendPacket(LearnSpellPacket(1000, 0, 0));
      SetLength(Client.Character.Spells, Length(Client.Character.Spells)+1);
      eb := Length(Client.Character.Spells)-1;
      Client.Character.Spells[eb].ID := 1000;
      Client.Character.Spells[eb].Level :=0;
      Client.Character.Spells[eb].Exp := 0;
      end else
      begin
      GiveItem(Item.ItemID, 0, 0, 0, 0, 0);
      Client.SendPacket(MessagePacket('SYSTEM', Client.Character.Name, 'You do not have enough mana', Client.MessageID, CT_CENTER, clRed));
    end;
    end;
15  Conquer Online / Scripts / Adv.Cure on: December 03, 2007, 06:29:34 pm
Made by tanelipe Big thanks to him

Code:
    1175:
        case SpellLevel of
          0: ReqMp := 160;
          1: ReqMp := 190;
          2: ReqMp := 215;
          3: ReqMp := 235;
          4: ReqMp := 255;
        end;

       if Client.Character.CurrentMP < ReqMP then
        Exit;
       Client.Character.CurrentMP := Client.Character.CurrentMP - ReqMP;
       Client.SendPacket(StatTypePacket(Client.Character, Client.Character.CurrentMP, ST_MP));

       ReqMP := Client.Character.MagicAttack;
       case SpellLevel of
        0: ReqMP := ReqMP + 500;
        1: ReqMP := ReqMP + 600;
        2: ReqMP := ReqMP + 700;
        3: ReqMP := ReqMP + 800;
        4: ReqMP := ReqMP + 900;
       end;

       ReqMP := Max(StackMagicDamage(ReqMP, Defender), 1);
       Defender.Character.CurrentHP := Defender.Character.CurrentHP + ReqMP;
       Defender.SendPacket(StatTypePacket(Client.Character, Client.Character.CurrentHP, ST_HP));
       StatCheck(Defender, Attacker);

       Targets := THashtable.Create;
       Targets.Add(Defender.Character.CharacterID, ReqMP);
       Packet := MAttackPacket(Attacker.Character.CharacterID,
                               Attacker.Character.Location.X,
                               Attacker.Character.Location.Y,
                               SpellID, Lvl, Targets);
       Attacker.SendPacket(Packet);
       SendRangePacket(Attacker.Character, MaxViewDistance, MaxViewDistance, Packet);
       Targets.Free;
    end;
Pages: [1] 2 3
Bookmark this site! | Upgrade This Forum
SMF For Free - Create your own Forum

Powered by SMF | SMF © 2016, Simple Machines
Privacy Policy