| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 41 online users. » 0 Member(s) | 40 Guest(s) Bing
|
| Latest Threads |
Last Chaos Server Sale
Forum: The Black Market (Buy, Sell, Trade)
Last Post: XWrongX2
01-26-2026, 11:07 PM
» Replies: 3
» Views: 611
|
All in One Exporter
Forum: Tools
Last Post: Kain88
01-25-2026, 07:04 AM
» Replies: 4
» Views: 429
|
HELP! ReZasCashServer It ...
Forum: Ep4 Support
Last Post: Kain88
01-24-2026, 03:24 PM
» Replies: 2
» Views: 165
|
Hi, does anyone know the ...
Forum: Help
Last Post: Desarija
01-21-2026, 11:29 AM
» Replies: 1
» Views: 113
|
LastChaos Nemesis
Forum: Server Advertising
Last Post: Desarija
01-20-2026, 04:06 PM
» Replies: 3
» Views: 236
|
Looking for EP4 Guidance
Forum: General Discussion
Last Post: xHypnosiaa
01-19-2026, 08:33 AM
» Replies: 1
» Views: 171
|
We're in need of creative...
Forum: Project Recruitment
Last Post: RGT
01-16-2026, 12:48 AM
» Replies: 0
» Views: 119
|
Last Chaos build deployme...
Forum: Ep4 Guides
Last Post: xHypnosiaa
01-08-2026, 11:14 AM
» Replies: 0
» Views: 75
|
Last Chaos global server ...
Forum: Ep4 Guides
Last Post: xHypnosiaa
01-07-2026, 07:01 PM
» Replies: 0
» Views: 33
|
EP-2/EP-3 Mixed files
Forum: Archived General Server Releases
Last Post: TeKnodE
01-06-2026, 09:53 PM
» Replies: 1
» Views: 297
|
|
|
| fatal error C1083 |
|
Posted by: Vvladikv - 01-25-2021, 07:10 PM - Forum: Ep4 Support
- Replies (6)
|
 |
compiling Game Server
1>c:\lcsource-master\server source\sharelib\netmsg.h(8): fatal error C1083: Can't open file include: boost/shared_ptr.hpp: No such file or directory
(Visual studio 2010)
2
|
|
|
| Couldn't find project |
|
Posted by: Vvladikv - 01-25-2021, 06:09 PM - Forum: Solved topics
- Replies (4)
|
 |
D:\LCSource-master\Server Source\GameServer\GameServer.vcxproj : error : Couldn't find project D:\LCSource-master\Server Source\GameServer\GameServer.vcxproj. (
(Visual studio 2010 )
What could be the reason?
2
|
|
|
| Potion Bug |
|
Posted by: PTR321 - 01-24-2021, 04:00 PM - Forum: Solved topics
- Replies (6)
|
 |
Hey Guys,
i have an bug with my Magical Attack Mineral ID (500) and Physical Attack Mineral ID (498)
when i use this potions i cant deal damage ? i looked with the skill editor but there is everything right...
i cant upload a screenshot i got the error -200
without this potion i deal 30k damage and with the potion i only deal 126 damge, later i try to upload again ?
regards
PTR321
|
|
|
| dcs mcs time |
|
Posted by: rondo157 - 01-24-2021, 03:04 PM - Forum: Solved topics
- Replies (3)
|
 |
Hello all!
How to change default dcs and mcs time? For ex: mcs saturday 19:00 and dcs sunday 19:00
thanks
rondo157
|
|
|
| winNT.h "missing ';' before identifier 'PVOID64'" fix |
|
Posted by: Vogelj1988 - 01-24-2021, 07:49 AM - Forum: General Guides
- Replies (3)
|
 |
This Guide is for all the new people that want to start a lc server and cant get past the before identifier 'PVOID64 error in vs2010.
How to fix
1. open the path called
C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Include
2. look for the file called winNT.h
3.Open it up with notepad++ or what ever you use
4. go to line 290 and you find this typedef void * POINTER_64 PVOID64;
5. change typedef void * POINTER_64 PVOID64; to typedef void * __ptr64 PVOID64; .
|
|
|
| Heavenstone 100% Upgrade |
|
Posted by: PTR321 - 01-23-2021, 04:37 PM - Forum: Solved topics
- Replies (2)
|
 |
Hey Guys,
can anyone help me what i need to change here to get 100% upgrade rate up to +30? ?
else if (reItem->m_itemProto->getItemNum0() == IETC_UPGRADE_SPECIAL)
{
// Àá¼öÇÔ : °íÁ¦ È®·ü Á¶Á¤
// +14¿¡ °íÁ¦ »ç¿ë½Ã¿¡´Â È®·ü Á¶Á¤, ±×¿Ü´Â ±âÁ¸°ú µ¿ÀÏ
if (upItem->getPlus() >= 18)
{
int prob = GetRandom(1, 100);
int upprob = 60 - (upItem->getPlus() + 32);
if (g_bUpgradeEvent)
upprob = (upprob * g_nUpgradeProb) / 100;
if (upprob < 0)
upprob = 1;
// ¼º°ø/º¯ÇÔ¾øÀ½(+3¹Ì¸¸)/½ÇÆÐ
if (prob > 0 && prob <= 10)
{
int rand = GetRandom(1, 2);
switch (rand)
{
case 1:
result = ITEM_UPGRADE_RESULT_MINUS;
break;
case 2:
result = ITEM_UPGRADE_RESULT_BROKEN;
break;
}
}
else if (prob > 10 && prob <= 10 + upprob)
{
result = ITEM_UPGRADE_RESULT_PLUS;
}
else
{
result = ITEM_UPGRADE_RESULT_NOCHANGE;
}
}
else
{
int prob = GetRandom(1, 100);
int upprob = 60 - (upItem->getPlus() * 3);
if (g_bUpgradeEvent)
upprob = (upprob * g_nUpgradeProb) / 100;
if (prob > 0 && prob <= 7)
{
result = ITEM_UPGRADE_RESULT_BROKEN;
if (upItem->getPlus() < 3)
result = ITEM_UPGRADE_RESULT_NOCHANGE;
}
else if (prob > 7 && prob <= (7 + 13))
{
result = ITEM_UPGRADE_RESULT_MINUS;
if (upItem->getPlus() < 3)
result = ITEM_UPGRADE_RESULT_NOCHANGE;
}
else if (prob > 20 && prob <= (20 + upprob))
{
result = ITEM_UPGRADE_RESULT_PLUS;
}
else
result = ITEM_UPGRADE_RESULT_NOCHANGE;
}
}
thanks in advance
PTR321 ?
|
|
|
| New Platinum Blessed Iris |
|
Posted by: XTheReturnX - 01-20-2021, 07:19 AM - Forum: Ep4 Support
- No Replies
|
 |
Hey,
i want to add a new Platinum Blessed Iris but with 500% Exp boost but i dont know where i can do this. I hope anybody can help me
regards
XTheReturnX
|
|
|
|