MMORPG Core - Deutsche Community für Online Rollenspiele - Powered by vBulletin

  • AAA
  • Aggressive
  • Alienated
  • Amazed
  • Amused
  • Angelic
  • Angry
  • Apelike
  • Artistic
  • Asleep
  • Balanced
  • Banhappy
  • Bashful
  • Bitchy
  • Blah
  • Bookworm
  • Bored
  • Breezy
  • Brooding
  • Busy
  • Buzzed
  • Chatty
  • Cheeky
  • Cheerful
  • Cloud 9
  • Cold
  • Coldturkey
  • Confused
  • Cool
  • Crappy
  • Creative
  • Curious
  • Cynical
  • Daring
  • Dead
  • Depressed
  • Devilish
  • Disagree
  • Doh
  • Doubtful
  • Dramaqueen
  • Dreaming
  • Drunk
  • Elated
  • Energetic
  • Fiendish
  • Fine
  • Flirty
  • Gloomy
  • Goofy
  • Grumpy
  • Happy
  • Horny
  • Hot
  • Hungover
  • In Love
  • Innocent
  • Inpain
  • Insomnious
  • Inspired
  • Lonely
  • Lucky
  • Lurking
  • Mellow
  • Mischievious
  • Mondayblues
  • Musical
  • Nerdy
  • Notamused
  • Notworthy
  • Paranoid
  • Pensive
  • Predatory
  • Procrastinating
  • Psychedelic
  • Question
  • Relaxed
  • Roflmao
  • Sad
  • Scared
  • Scurvy
  • Shocked
  • Sick
  • Sleepy
  • Sluggish
  • Sneaky
  • Snobbish
  • Spaced
  • Spooky
  • Sporty
  • Starving
  • Stressed
  • Sunshine
  • Sweettooth
  • Thinking
  • Tired
  • Torn
  • Twisted
  • Veggedout
  • Volatile
  • Woot
  • Worried
  • Yeehaw
  • DDos
  • DDos
  • DDos
  • DDos
  • DDos
  • DDos
  • DDos
  • DDos
  • DDos
  • DDos
  • DDos
  • Tweet   
    Seite 1 von 3 123 LetzteLetzte
    Ergebnis 1 bis 15 von 38
    1. #1
      Anfänger
       
      Avatar von Hepatitis C
      Registriert seit
      Dec 2009
      Beiträge
      30
      Danke
      2
      Danke erhalten: 11

      Standard Official 5165 Thread

      Die Werbung stört? Registriere dich hier!
      I made this thread for people who have problems with the 5165 source that just recently became public.
      First here's how's you set it up.
      Download it from [Um Links zu sehen registriere dich bitte. Klicke hier.].
      And the client from [Um Links zu sehen registriere dich bitte. Klicke hier.].
      Open the folder, for me its Fixed Source.
      Place the folder OldCODB in your C:/ drive.
      Then you open OldCODB.

      Then in OldCODB open up config.ini.

      Edit config.ini to your settings.
      Then go to your sources debug folder, for me its Fixed Source\rikardo updated\bin\Debug and double click NewestCOServer.exe.
      And when the Cmd prompt opens up type in
      PHP-Code:
       /newacc username password [PM
      For example:
      PHP-Code:
      /newacc test 123 [PM

      Then login with that account and you're good to go.
      If you have any problems with the 5165 source post them here. I will try my hardest to help with these problems and if anyone knows any solutions to problems post them here as well.


      EDIT:There is a certain way to do that /item command in case you don't know.
      It's like this:
      PHP-Code:
      /item ConquestArmor super 12 7 255 13 13 
      The item name needs to be spelled entirely correct.
      Meaning capital letters and all.
      The quality needs to be right after but lowercased.
      Hope this helps.

      Problems:Expball:Unlimited Times a day.
      Code:
      #region ExpBall
                          case 723700://This is for the expball  10 Times a day. This code makes it so you can use it as many times as you want. Replace your old expball code with this one.
                              {
                                  if (Level < 137)
                                  {
                                      IncreaseExp(ExpBallExp, false);
                                      RemoveItem(I);
                                  }
      
                                  else
                                  {
                                      MyClient.LocalMessage(2000, "You are already the highest level.");
                                  }
                                  break;
                              }
                          #endregion
      Pots:Now cannot be used when MP/HP is already full.
      Code:
                          #region MP Pots//Replace your entire potion code with mine.
                          case 1001000:
                              {
                                  if (CurMP <= MaxMP)
                                  {
                                      CurMP += 70;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You MP is currently full.");
                                  }
                                  break;
                              }
                                  
                          case 1001010:
                              {
                                  if (CurMP <= MaxMP)
                                  {
                                      CurMP += 200;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You MP is currently full.");
                                  }
                                  break;
      
                              }
                          case 1001020:
                              {
                                  if (CurMP <= MaxMP)
                                  {
                                      CurMP += 450;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You MP is currently full.");
                                  }
                              break;
                              }
                          case 1001030:
                              {
                                  if (CurMP <= MaxMP)
                                  {
                                      CurMP += 1000;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You MP is currently full.");
                                  }
                                  break;
                              }
                          case 1001040:
                              {
                                  if (CurMP <= MaxMP)
                                  {
                                      CurMP += 2000;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You MP is currently full.");
                                  }
                              }
                              break;
                          case 1002030:
                              {
                                  if (CurMP <= MaxMP)
                                  {
                                  CurMP += 3000;
                                  RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You MP is currently full.");
                                  }
                                  break;
                              }
                          case 1002040:
                              {
                                  if (CurMP <= MaxMP)
                                  {
                                      CurMP += 4500;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You MP is currently full.");
                                  }
                                  break;
                              }
                          #endregion
                          #region HP Pots
                          case 1000000:
                              {
                                  if (CurHP <= MaxHP)
                                  {
                                      CurHP += 70;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You HP is currently full.");
                                  }
                                  break;
                              }
                          case 1000010:
                              {
                                  if (CurHP <= MaxHP)
                                  {
                                      CurHP += 150;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You HP is currently full.");
                                  }
                                  break;
                              }
                          case 1000020:
                              {
                                  if (CurHP <= MaxHP)
                                  {
                                      CurHP += 250;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You HP is currently full.");
                                  }
                                  break;
                              }
                          case 1000030:
                              {
                                  if (CurHP <= MaxHP)
                                  {
                                      CurHP += 500;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You HP is currently full.");
                                  }
                                  break;
                              }
                          case 1002000:
                              {
                                  if (CurHP <= MaxHP)
                                  {
                                      CurHP += 800;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You HP is currently full.");
                                  }
                                  break;
                              }
                          case 1002010:
                              {
                                  if (CurHP <= MaxHP)
                                  {
                                      CurHP += 1200;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You HP is currently full.");
                                  }
                                  break;
                              }
                          case 1002020:
                              {
                                  if (CurHP <= MaxHP)
                                  {
                                      CurHP += 2000;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You HP is currently full.");
                                  }
                                  break;
                              }
                          case 1002050:
                              {
                                  if (CurHP <= MaxHP)
                                  {
                                      CurHP +=3000;
                                      RemoveItem(I);
                                  }
                                  else
                                  {
                                      MyClient.LocalMessage(2005, "You HP is currently full.");
                                  }
                                  break;
                              }
                          #endregion
      Ladyluck:With this code you can do the lottery unlimited times.
      Code:
                                  case 923:
                                      {
                                          if (Control == 0)
                                          {
                                              
                                              GC.AddSend(Packets.NPCSay(("Welcome to the Lottery Center! There are meny LuckyBoxes which have innumerable treasure such as super gems,two-socket gears, up to 500,000,000 silvers etc. in them. If you are level 70 or above, you are allowed to enter the Lottery Center as much as you want.")));
                                              GC.AddSend(Packets.NPCSay(("And I charge you only 27 CPs for each admission.Come on, Try your luck right now!")));
                                              GC.AddSend(Packets.NPCLink("Wow, good deal!", 1));
                                              GC.AddSend(Packets.NPCLink("May I know the rules first?", 2));
                                              GC.AddSend(Packets.NPCLink("No Thanks!", 255));
                                              GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                              GC.AddSend(Packets.NPCFinish());
                                          }
                                          else if (Control == 1)
                                          {
                                              if (GC.MyChar.Lottery)
                                              {
                                                  GC.MyChar.Teleport(700, 40, 50);
                                                  return;
                                              }
                                              if (GC.MyChar.Level >= 70)
                                              {
                                                  if (GC.MyChar.Inventory.Count < 40)
                                                  {
                                                      
                                                      if (GC.MyChar.CPs >= 27)
                                                      {
                                                          GC.MyChar.Teleport(700, 40, 50);
                                                          GC.MyChar.CPs -= 27;
                                                          GC.MyChar.Lottery = true;
                                                      }
                                                      else
                                                      {
                                                          GC.AddSend(Packets.NPCSay("I'm sorry you do not have the required CPs."));
                                                          GC.AddSend(Packets.NPCLink("Okay, I will be back when I have 27 CPs.", 255));
                                                          GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                                          GC.AddSend(Packets.NPCFinish());
                                                      }
                                                  }
                                                  else
                                                  {
                                                      GC.AddSend(Packets.NPCSay("Please make some room in your item box first."));
                                                      GC.AddSend(Packets.NPCLink("Okay...", 255));
                                                      GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                                      GC.AddSend(Packets.NPCFinish());
                                                  }
                                              }
                                              else
                                              {
                                                  GC.AddSend(Packets.NPCSay("I'm sorry you do not have the required Level 70."));
                                                  GC.AddSend(Packets.NPCLink("Okay...", 255));
                                                  GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                                  GC.AddSend(Packets.NPCFinish());
                                              }
                                          }
                                          if (Control == 2)
                                          {
                                              GC.AddSend(Packets.NPCSay("You will be teleported to Lottery Center where there are many LuckyBoxes after you pay me 27 CPs. You may choose one box to try your luck at your will."));
                                              GC.AddSend(Packets.NPCSay("Remeber you have only one chance to open a LuckyBox every time. If you want to open another box, you have to leave the room to re-enrol in Market."));
                                              GC.AddSend(Packets.NPCLink("Okay...", 255));
                                              GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                              GC.AddSend(Packets.NPCFinish());
                                          }
                                          break;
                                      }
      Nearly Perfect Expball Calculations.
      Code:
              public uint ExpBallExp
              {
                  get
                  {
                      if (Level < 30)
                          return (uint)(15000 + Level * 430);
                      else if (Level < 50)
                          return (uint)(40000 + Level * 430);
                      else if (Level < 80)
                          return (uint)(30000 + Level * 500);
                      else if (Level < 80)
                          return (uint)(30000 + Level * 600);
                      else if (Level < 100)
                          return (uint)(30000 + Level * 700);
                      else if (Level < 110)
                          return (uint)(30000 + Level * 900);
                      else if (Level < 120)
                          return (uint)(30000 + Level * 1100);
                      else if (Level < 125)
                          return (uint)(30000 + Level * 1500);
                      else if (Level < 130)
                          return (uint)(30000 + Level * 1000);
                      else
                          return (uint)(30000 + Level * 1000);
                  }
              }

    2. Die folgenden 2 Mitglieder bedankten sich bei Hepatitis C für diesen Beitrag:

      newstar (01.01.10)

    3. #2
      Nydn
      Gast
       

      Standard

      Thanks for that nice Thread,
      i will try it ^^

    4. #3
      Anfänger
       
      Avatar von Hepatitis C
      Registriert seit
      Dec 2009
      Beiträge
      30
      Danke
      2
      Danke erhalten: 11

      Standard

      Zitat Zitat von Nydn [Um Links zu sehen registriere dich bitte. Klicke hier.]
      Thanks for that nice Thread,
      i will try it ^^

      Thanks, need any help and I'll be glad to assist!

    5. #4
      Neuling
       

      Registriert seit
      Dec 2009
      Beiträge
      5
      Danke
      0
      Danke erhalten: 0

      Standard

      Zitat Zitat von Hepatitis C [Um Links zu sehen registriere dich bitte. Klicke hier.]

      Thanks, need any help and I'll be glad to assist!
      Thanks very much!

      Bro can you post ur source with everything fixed?

    6. #5
      Anfänger
       
      Avatar von Hepatitis C
      Registriert seit
      Dec 2009
      Beiträge
      30
      Danke
      2
      Danke erhalten: 11

      Standard

      Zitat Zitat von BALTA00 [Um Links zu sehen registriere dich bitte. Klicke hier.]
      Thanks very much!

      Bro can you post ur source with everything fixed?

      Sorry, I'm not going to post my source.
      I worked very hard on it.

    7. #6
      Neuling
       

      Registriert seit
      Dec 2009
      Beiträge
      5
      Danke
      0
      Danke erhalten: 0

      Standard

      Zitat Zitat von Hepatitis C [Um Links zu sehen registriere dich bitte. Klicke hier.]

      Sorry, I'm not going to post my source.
      I worked very hard on it.
      Please please, send me for Private, I really like this I promet no give its to anyone, I am good in Photoshop editing Thing of CO, If you want, I can made a very good Skin, Only tell me about of what you want, I made RedBlackDragon Skin, I post it in EPVPERS!

    8. #7
      Anfänger
       
      Avatar von Hepatitis C
      Registriert seit
      Dec 2009
      Beiträge
      30
      Danke
      2
      Danke erhalten: 11

      Standard

      Zitat Zitat von BALTA00 [Um Links zu sehen registriere dich bitte. Klicke hier.]
      Please please, send me for Private, I really like this I promet no give its to anyone, I am good in Photoshop editing Thing of CO, If you want, I can made a very good Skin, Only tell me about of what you want, I made RedBlackDragon Skin, I post it in EPVPERS!

      Sorry I am not going to give you my source.
      It's my hard work.

    9. #8
      Nydn
      Gast
       

      Standard

      Zitat Zitat von BALTA00 [Um Links zu sehen registriere dich bitte. Klicke hier.]
      Thanks very much!

      Bro can you post ur source with everything fixed?
      No dont post ur source.
      If u make it your self, u could learn ist :D

      PS: Sry for my bad english -.-

      EDIT: FTW im very late oO
      Geändert von Nydn (26.12.09 um 17:52 Uhr)

    10. #9
      Anfänger
       
      Avatar von Hepatitis C
      Registriert seit
      Dec 2009
      Beiträge
      30
      Danke
      2
      Danke erhalten: 11

      Standard

      I posted some good fixes in this section so why don't you check them out Balta00?

    11. #10
      Neuling
       

      Registriert seit
      Dec 2009
      Beiträge
      5
      Danke
      0
      Danke erhalten: 0

      Standard

      Zitat Zitat von Hepatitis C [Um Links zu sehen registriere dich bitte. Klicke hier.]

      Sorry I am not going to give you my source.
      It's my hard work.
      OK, I will try fix this myself, ahh I want ask some thing

      Why when I am leveling Toxic fog, this got automatic to level 4?

      I want player leveling this, no fast! can you help me to fix this?

    12. #11
      Nydn
      Gast
       

      Standard

      Where must i type my IP by the Client

      PS: Sry for my bad englisch -.-

    13. #12
      Neuling
       

      Registriert seit
      Dec 2009
      Beiträge
      5
      Danke
      0
      Danke erhalten: 0

      Standard

      Zitat Zitat von Nydn [Um Links zu sehen registriere dich bitte. Klicke hier.]
      Where must i type my IP by the Client

      PS: Sry for my bad englisch -.-
      You no need type the IP in ur client, if u type ur IP u will cant longin in, IP in the client is only for other user, and is in Server.dat, edit with Notepad!

    14. #13
      Anfänger
       
      Avatar von Hepatitis C
      Registriert seit
      Dec 2009
      Beiträge
      30
      Danke
      2
      Danke erhalten: 11

      Standard

      Zitat Zitat von Nydn [Um Links zu sehen registriere dich bitte. Klicke hier.]
      Where must i type my IP by the Client

      PS: Sry for my bad englisch -.-

      You're going to put the ip in the server.dat.

    15. #14
      Nydn
      Gast
       

      Standard

      but if i nothing change and want to login, the Client says:
      Server maintenance or Network congested. Try again later.

      And in the Server.DAT are many IPs which ip i must change?

    16. #15
      Neuling
       

      Registriert seit
      Dec 2009
      Beiträge
      5
      Danke
      0
      Danke erhalten: 0

      Standard

      How to modific ProfileRate and SkillRate?

    Seite 1 von 3 123 LetzteLetzte

    Lesezeichen

    Berechtigungen

    • Neue Themen erstellen: Nein
    • Themen beantworten: Nein
    • Anhänge hochladen: Nein
    • Beiträge bearbeiten: Nein
    •