[Release] My 5165 Source

02/19/2010 01:02 Decker_#1
Hello
I would like to release my 5165 source to everyone.
Enjoy!

Features:
Code:
Houses
Top Halos
Class PK Envoy
PK Tournament
Scroll Commands
Life Command
Mana Command
Revive Command
Fixed Marriage
Fixed fb/ss system
Fix So GM's/PM's Can PK
Fixed Trade
Frozen Grotto
NPC To Clear Inventory
Furniture NPC
Proficiency God
Penitence Amulet
Guild War Starting NPC
1st Reborn
2nd Reborn
Ninja Amulet
Mount Officer
Lab + Lab Spawns
Ethereal
Bless NPC
Attribute Seller NPC
Super Gems Effect
Cool Effect
Guard Summoning
Monster Summoning
Nearly Perfect EXPBall Calculations
[Only registered and activated users can see links. Click Here To Register...]

Note:
All NPC's are in a seperate map, a npc in tc will teleport you there.

Press Thanks!
02/19/2010 01:54 killersub#2
Here's what I always say...

be happy he even released it because this is a "contributing" section meaning this site was created to share your ideas to the world! now stop insulting _Decker It's not his fault that the 5165 source was created >.<... btw, this isn't a child's playground...

@_Decker

GoodJob I'm happy your learning step by step! :D
02/19/2010 02:17 killersub#3
Quote:
Originally Posted by .Arco View Post
No, I started out by looking at the 5017 source and seeing the way it was structured then I read ebooks on c# then a good friend mentored me.
Maybe that's the same way he learned? but when a mentor tutored him he/she might have told him the best way to learn is: copy+paste codes on your source and learning from the errors you get and fixing them yourself...and by that a good code is written...

@_Decker

I'll give you thanks just cause I see you learning...don't go by what any "rude" post tells you...If you want to release something that is "contributing" to the forum, then do it :)
02/19/2010 03:18 spare2#4
Great release Decker, keep it up. :)
02/19/2010 06:52 Huseby#5
Deamn this thread got short.
And etleast arco were smart enough to delete his post, i can read em anyhow but oh well.

#Cleaned
02/19/2010 12:26 Korvacs#6
Back to the topic please >_>.
02/20/2010 13:51 aboseada#7
Source eiro
02/23/2010 06:30 tyrel12#8
Hey decker how can i keep my server stable like my server keeps crashing
02/23/2010 06:31 Arcо#9
Quote:
Originally Posted by tyrel12 View Post
Hey decker how can i keep my server stable like my server keeps crashing
Decker will not be able to answer that question correctly.
But I can help, PM me.
02/23/2010 17:05 CIRASH#10
Quote:
Originally Posted by Decker_ View Post
Hello
I would like to release my 5165 source to everyone.
Enjoy!

Features:
Code:
Houses
Top Halos
Class PK Envoy
PK Tournament
Scroll Commands
Life Command
Mana Command
Revive Command
Fixed Marriage
Fixed fb/ss system
Fix So GM's/PM's Can PK
Fixed Trade
Frozen Grotto
NPC To Clear Inventory 
Furniture NPC
Proficiency God
Penitence Amulet
Guild War Starting NPC
1st Reborn
2nd Reborn
Ninja Amulet
Mount Officer
Lab + Lab Spawns
Ethereal
Bless NPC
Attribute Seller NPC
Super Gems Effect
Cool Effect
Guard Summoning
Monster Summoning
Nearly Perfect EXPBall Calculations
[Only registered and activated users can see links. Click Here To Register...]

Note:
All NPC's are in a seperate map, a npc in tc will teleport you there.

Press Thanks!
Decker I am proud of you for contributing BUT i wouldnt download this source even if you payed me. +k
02/23/2010 18:57 Decker_#11
I got this source from ********...
02/23/2010 21:08 ~jochemke~#12
Well yea every source can be good , it just depends on the knowledge of the user of it . anyway thanks for releasing .
02/23/2010 22:38 Finch#13
Hello i have seen here a lot of guides, i make it step by step, a lot of times, and nothing, i have still this error:


[Only registered and activated users can see links. Click Here To Register...]

My system configuration(and software what i installed):
  • C# - installed
  • Windows XP SP2
  • Net framework 3.5
  • AppServer - installed

Maybe its something missed, please help me

And i use A LOT OF different sources every time i had same error/bug whatever.
02/23/2010 22:52 killersub#14
Quote:
Originally Posted by Finch View Post
Hello i have seen here a lot of guides, i make it step by step, a lot of times, and nothing, i have still this error:


[Only registered and activated users can see links. Click Here To Register...]

My system configuration(and software what i installed):
  • C# - installed
  • Windows XP SP2
  • Net framework 3.5
  • AppServer - installed

Maybe its something missed, please help me

And i use A LOT OF different sources every time i had same error/bug whatever.
Okay...u see in the cmd where it says /Database Line: 1713 or something like that...go to that line with the error in database.cs and the other lines aswell and post those lines here or the whole code which the line is in...and I'll try my BEST to help u
02/24/2010 11:21 Finch#15
Ok so the database (lines with errors are Underline)

Quote:
{
string section = "[" + Section + "]";
IniSectionStructure ISS = null;
Sections.TryGetValue(section, out ISS);
if (ISS != null)
{
IniValueStructure IVS = null;
ISS.Variables.TryGetValue(Key, out IVS);
if (IVS != null)
return double.Parse(IVS.Value);
}
return 0;
}
public float ReadFloat(string Section, string Key)
{
string section = "[" + Section + "]";
IniSectionStructure ISS = null;
Sections.TryGetValue(section, out ISS);
if (ISS != null)
Next one - DropRates:
Quote:
public int MonsterID;
public uint ID;
public byte Sockets;
public byte Plus;
public byte Bless;
public double DropChance;
}
public static void Load()
{
IniFile iNi = new IniFile(@"C:\OldCODB\DropRates.ini");
DragonBall = iNi.ReadDouble("Rates", "DragonBall");
Meteor = iNi.ReadDouble("Rates", "Meteor");
PlusOne = iNi.ReadDouble("Rates", "PlusOne");
Refined = iNi.ReadDouble("Rates", "Refined");
Unique = iNi.ReadDouble("Rates", "Unique");
Elite = iNi.ReadDouble("Rates", "Elite");
Super = iNi.ReadDouble("Rates", "Super");
OneSoc = iNi.ReadDouble("Rates", "OneSoc");
TwoSoc = iNi.ReadDouble("Rates", "TwoSoc");
Gem = iNi.ReadDouble("Rates", "Gem");
Silver = iNi.ReadDouble("Rates", "Silver");
CP10 = iNi.ReadDouble("Rates", "CP10");
CP30 = iNi.ReadDouble("Rates", "CP30");
And the Program.cs (It tells me that is error in line 1...0.o LOL)

Quote:
using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
using NewestCOServer.Game;
namespace NewestCOServer
{
class Program
{

public static void WriteLine(Exception Exc)
{
Console.WriteLine(Exc.ToString());

try
{