Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

My Source

C# Developer
Joined
Jan 27, 2008
Messages
541
Reaction score
12
Eh, i got bored of it all, and was tired of trying to fix annoying login freeze. So here is another edited version of the Lands of the Forgotten source once again.

For those of you downloading this, do not use it as a public source, use it as a guide on how to code one IF that. I recommend using a different source for learning that way u dont always end up with a login freeze.

Things added:
reborn npcs
lab
dis city leveling area
alien serpent/serpent/basilisk spawn
110 promotion awards (soc robes etc)
/scroll command
/dc command
gold to cps npc
fixed free + stones in shopping mall
Organized the client.cs (a little)
PH's have their own commands
/kick added
/killmap added
shows character armor on login (bug fixed)
tao damages fixed
archer damages fixed
110 promo gets db
water tao trainer fixed

Might be more things here and there.

Here is the download link




Also included:
mech ids
map ids
job ids


Again, do not use this as a public server...
 
Last edited:
Elite Diviner
Joined
Aug 19, 2006
Messages
415
Reaction score
0
err few questions

shows character armor on login (bug fixed) <---howd u fix that? :p
tao damages fixed <---where'd u fix this at?

alltho u maybe like "omfg whata nab asking all these noobie questions" well its not that i just aint use 2 the loftco source alltho my loftco source version offers a wide variety of new features(which i may release sometime)

which include:
an itemevent command(usage for any items besides supers/elites/etc)
a unban command
a new map(chaos sanctuary)
lab 1
1st & 2nd rb
a c00l reg site
rewritten npc dialogs 2 work easier(+ more efficient)
ctf event(capture the flag) alltho where re doing it so it currently dont work)
login freeze fixed(mostly fixed itll stay up for a few hrs now atleast) before it was like 30 mins to a hr max

*join meh server hoe's* lol

anywayz back on topic nice release :p
 
Last edited:
C# Developer
Joined
Jan 27, 2008
Messages
541
Reaction score
12
/killmap only kills the people in the map id specified, and they can revive after.

in the client.cs where u see
Code:
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Welcome to PowerSource CO", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Report ANY bugs you find on the forum", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Don't Forget To Vote For PowerSource Daily", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Exp Rate: " + ExternalDatabase.ExpRate + "x", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Players Online: " + World.AllChars.Count, 2005));
                                    SendPacket(General.MyPackets.GeneralData(MyChar.UID, 0, 0, 0, 75));
                                    There = true;
add this to the end to fix the naked people bug
Code:
World.SpawnMeToOthers(MyChar, true);
tao damages arent completely fixed, just mostly (only problem so far is that fire circle does 32000 damage to people)
 
Elite Diviner
Joined
Aug 19, 2006
Messages
415
Reaction score
0
/killmap only kills the people in the map id specified, and they can revive after.

search for the welcome messages etc, and under there is the fix for the shows character armor on login fix

tao damages arent completely fixed, just mostly (only problem so far is that fire circle does 32000 damage to people)

and where do u fix tao dmges at?
 
Last edited:
C# Developer
Joined
Jan 27, 2008
Messages
541
Reaction score
12
i didnt fix the tao damages, sorry, someone else had to do it for me.

and not a clue on the gems
 
Elite Diviner
Joined
Aug 19, 2006
Messages
415
Reaction score
0
the taos damage is seted in other.cs !!!

ahk... stupid me i'm assuming this is it correct? lolz(wow these calculations r off) :p

else if (AttackType == 3 || AttackType == 4)//Magic
{
if (AttackType == 3)
Damage = (int)Attacker.MAtk + ExtraDamage;
else
Damage = (int)((double)ExtraDamage * Attacker.MAtk);

Damage = (int)((double)Damage * Attacker.AddAtkPc);

double Pc = (Attacker.MAtk - (Attacked.MDefense * 10 )) / 10000;


Damage = (int)((double)Damage * Attacker.AddMAtkPc);

Damage = (int)(0.75 * Damage);
Damage = (int)(Damage * Pc);

if (Damage < 1)
Damage = 1;
}
return (uint)Damage;
}
 
Experienced Elementalist
Joined
Jul 11, 2008
Messages
281
Reaction score
1
cant u just bypass the login freez ? and whats this error mysql gave me ? Script line: 25 No database selected
help plx ;)
 
Rival Gamers Owner
Loyal Member
Joined
Jul 7, 2007
Messages
962
Reaction score
161
stealarcher very nice man + personal rep :D
 
Rival Gamers Owner
Loyal Member
Joined
Jul 7, 2007
Messages
962
Reaction score
161
oh nice i love how you arranged the files ...


lol it crashed my client as soon as i hit connect.....
 
Rival Gamers Owner
Loyal Member
Joined
Jul 7, 2007
Messages
962
Reaction score
161
noooez dis sux it sounds sexy and it crashed D: 5017 right?
 
Back
Top