Üdv!
1.kérdés:
A freakgamerses special storageon kívül valaki találkozott már publikált bugnélküli special storageval?
Ha igen, megosztaná velem a linket?
2.kérdés:
Ha átteleportálok más birodalomba, minden tárgy 3* több yangba kerül példa: 250 millás rúdat 750 milláért akarja rámsózni az npc a birodalmamon kívül. Ezt hol szedhetem ki? (Nem a 3% adós dolog ez.)
Köszönöm a válaszokat
2:
Nyisd meg a shop.cpp fájlt és keress rá erre:
if (it->second) // if other empire, price is triple
dwPrice *= 3;
Módosítsd így:
if (it->second) // if other empire, price is triple
dwPrice *= 1;
Keress rá erre:
iVal = 3;
Csere:
iVal = 1;
Keress rá erre:
if (bOtherEmpire) // no empire price penalty for pc shop
pack2.items.price = item.price * 3;
Módosítsd így:
if (bOtherEmpire) // no empire price penalty for pc shop
pack2.items.price = item.price * 1;
Nyisd meg a ShopEx.cpp fájlt és keress rá erre:
if (bOtherEmpire) // no empire price penalty for pc shop
pack2.items.price = item.price * 3;
Módosítsd így:
if (bOtherEmpire) // no empire price penalty for pc shop
pack2.items.price = item.price * 1;
Keress rá erre:
if (it->second) // if other empire, price is triple
dwPrice *= 3;
Módosítsd így:
if (it->second) // if other empire, price is triple
dwPrice *= 1;
Nyisd meg a Shop_manager.cpp fájlt és keress rá erre:
int iVal = 3;
Módosítsd így:
int iVal = 1;
Köszi! A másikra keresek már csak, ezt megoldottuk :D
A raktárt, aki nem ért nagyon C-hez, az nem fogja kijavítani, a háromnegyedét át kell írni. :D
Ha normálisat akarsz akkor az egészet 8)
Vagy kibogarászod a global forrásból, márha benne van a publikált szutyokban.
Idézetet írta: [VIP]P3NG3R Dátum 2018-05-09, 00:20:28
Ha normálisat akarsz akkor az egészet 8)
Vagy kibogarászod a global forrásból, márha benne van a publikált szutyokban.
Nincs benne :)