Jump to content

Chookez

Member
  • Posts

    45
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Chookez

  1. I just started the server to look at an object. I wanted to delete it afterwards, I just didn't have time for it. So no problem happened. I just didn't know what it was. Sry my bad eng.
  2. Hi. I installed allwip server file on my VPS, and two hours later: To recover your lost Database and avoid leaking it: Send us 0.06 Bitcoin (BTC) to our Bitcoin address 1DqRz2B9cBizPaajy4EAR3Vhj74b3rQ7NB and contact us by Email with your Server IP or Domain name and a Proof of Payment. If you are unsure if we have your data, contact us and we will send you a proof. Your Database is downloaded and backed up on our servers. Backups that we have right now: account, common, hotbackup, log, player. If we dont receive your payment in the next 10 Days, we will make your database public or use them otherwise. xDDDD Sad moments. Luckily I didn't do anything about it https://www.blockchain.com/btc/address/1DqRz2B9cBizPaajy4EAR3Vhj74b3rQ7NB
  3. Procedure: Reset FreeBSD root user password Step # 1: Start FreeBSD server/workstation. Step # 2: Press Enter key at boot loader. At Welcome to FreeBSD! boot menu press spacebar key to pause default booting Type number 4 key (type 4 number) to boot into single user mode Next you will see the following prompt from system:When prompted Enter full pathname of shell or RETURN for /bin/sh: Press Enter key to boot into a single user mode. Next, you will be immediately dropped into a single user mode without a root password. You need to remount / (root) file system in read and write mode with mount command, type the following commands: mount -u / mount -a Setup a new password with the passwd command for root user: passwd
  4. Hello all. Someone can give me some help in this code? if (!bFound) { TPacketGCEmpire pe; pe.bHeader = HEADER_GC_EMPIRE; pe.bEmpire = number(1, 3); d->Packet(&pe, sizeof(pe)); } I deleted the yellow empire from the client. So here's another statement that a user who doesn't have a character just enters the Red and Blue empires. pe.bEmpire = number(1, 3); 1 = Shinsoo 2 = Chunjo 3 = Jinno But i only want the first and third, not the second. Sorry for my very bad english.
  5. ? Hi guys. Is it possible to make NPCs visible in World Editor? If so how?
  6. case USE_EXTEND_TIME: { LPITEM item2; if (!IsValidItemPosition(DestCell) || !(item2 = GetItem(DestCell))) { return false; } if (item2->IsExchanging()) { ChatPacket(CHAT_TYPE_INFO, "You can't use it while trading."); return false; } if (item2->IsEquipped()) { ChatPacket(CHAT_TYPE_INFO, "You cannot use it on equipped item."); return false; } if (item2->GetType() != ITEM_COSTUME || (item2->GetSubType() != COSTUME_BODY && item2->GetSubType() != COSTUME_HAIR)) { return false; } item2->SetSocket(0, item2->GetSocket(0) + item->GetValue(0)); item->SetCount(item->GetCount() - 1); ChatPacket(CHAT_TYPE_INFO, "Item time has been extended!"); } break; Hi all. I need a little help. How do I fix the item's maximum 7 days? If the item is 7 days old, then you cannot increase your time any further. Thanks for help, and sorry for my bad english.
  7. It works for me, thanks. @ReFresh Yes, replace the function. Of course, if you've already changed something, check it out.
  8. Hi. I have a little problem with this quest: [Hidden Content] I'll kill the dragon and all monsters resurrect in the same way. ? Regen.txt: [Hidden Content] Someone can help me? ?
  9. I did not test it!!!!!! Open char.h and search: DWORD GetLastMoveTime() const { return m_dwLastMoveTime; } Add under: DWORD GetLastItemUseTime() const {return m_dwLastItemUseTime;} Search: DWORD m_dwLastMoveTime; Add under: DWORD m_dwLastItemUseTime; Open char.cpp file and search: m_dwPlayStartTime = m_dwLastMoveTime = get_dword_time(); Add under: m_dwLastItemUseTime = 0; Open char_item.cpp file and search: if (item->GetVnum() != 70302) { PIXEL_POSITION posWarp; int x = 0; int y = 0; double nDist = 0; const double nDistant = 5000.0; //±ÍČŻ±âľďşÎ if (item->GetVnum() == 22010) { x = item->GetSocket(0) - GetX(); y = item->GetSocket(1) - GetY(); } //±ÍČŻşÎ else if (item->GetVnum() == 22000) { SECTREE_MANAGER::instance().GetRecallPositionByEmpire(GetMapIndex(), GetEmpire(), posWarp); if (item->GetSocket(0) == 0) { x = posWarp.x - GetX(); y = posWarp.y - GetY(); } else { x = item->GetSocket(0) - GetX(); y = item->GetSocket(1) - GetY(); } } Add under: int CalcLastItemUseSec = (get_dword_time() - GetLastItemUseTime()) / 1000 + 0.5; if (CalcLastItemUseSec < 5) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("WAIT_5_SEC_TO_USE")); return false; }
  10. Hello everyone. Someone can help me in C++ 1. How i can disable if you die then you can not put the equipped items into storage? 2. How i can disable equipped dragon stone can not storage? -----> "Can not store equipped DragonStone." Successsfully resolved! Please delete the topic.
  11. Hello everyone! I was browsing the web, but i did not find it, so I want to ask if there is someone have one normal plane ingame ItemShop? For that i mean: Anything like this would be perfect.
  12. Greetings! I have a question: How i can do in C++ write a function how one ITEM can reset COSTUME time? (Drawn to costume) Someone can help me? Sorry my bad english.
  13. In exchange.cpp change this: if (0 == s_vDSGrid[wBasePos]) to this: if (0 == s_vDSGrid[wPos])
  14. Thank you for your help. Very big thanks dear ridetpro.
  15. Hello. I would like to ask for help on one thing. How can I order time in C ++ to get up and down in mount? Sorry my english is bad. I'am hungary.
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.