Awsome release, but don't you think by doing this 20 + pservers will pop up from no where, and all fail? Please don't flame others, when your helping them get their servers up.
Lol ehm... they can't fix it 100 % as Jochem said, so the point is, your title is wrong haha. Cause you basically said that it's FIXED right? So yeah,,, it isn't fixed
Super gay. I go to start the server, thousands of words run down in half a second and then it closes. WTF lol this ish gaii. I went to config and changed stuff there, I went toooooo my thing and made a database, and i have hamachi turned on
Honestly, I don't think any of you guys will ever manage to fix the one major issue with the LOTF source. Atleast not without completly giving up on trying to make a server right now, and going to learn C# the best you can. Even I failed at fixing it, and I've managed to fix about 4 other minor crash problems, tons of skills, and more. If I'd suggest anything. Use this source as a way of learning some basics, then checking out Infamous's Sticky threads, his super basic source, and what to learn before starting a server. Or do what I do, wait patiently for Acid Co's lvling server. There's really nothing fun about running your own server, it all just comes down to the learning experience. And unless you have a hell of a lot of time on your hands, that learning is only going to go so far.
how about this download original lotf follow that source guide... then make it to your liking instead of going around flaming people saying there source sucks or asking if its good or not. im getting sick of it
[Release]LOFT 5016/5017 Source 06/13/2010 - CO2 PServer Guides & Releases - 21 Replies This is a guide to create a private server on a 5016/5017 client.
This is a CoMy source with Ninja (I edited a few things!!).
Whats in this source..
*Ninja`s
*High Drop Rates
*CP Drop
*All normal NPC`s
*Some custom NPC`s
Guide...
[Release]How to make a NinjaAmulet (LOFT Source!!) 02/14/2010 - CO2 PServer Guides & Releases - 5 Replies This release make the ninja amulet working!!
Search in Character.cs for:
else if (ItemParts == "720010")
{
CurHP += 500;
if (CurHP > MaxHP)
CurHP = MaxHP;
MyClient.SendPacket(General.MyPackets.Vital(UID, 0, CurHP));
RemoveItem(ItemUID);
[Release]How to create CPBags (LOFT Source!!) 02/13/2010 - CO2 PServer Guides & Releases - 1 Replies I know the most people are still running loft source so here is the code
Search in Character.cs for:
else if (ItemParts == "723723")
Add this code down there
else if (ItemParts == "729910")//CPMiniBag
{
CPs += 1000;
MyClient.SendPacket(General.MyPackets.Vital(UID, 3, CPs));
RemoveItem(ItemUID);