Jump to content

Doose

Active+ Member
  • Posts

    114
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Doose

  1. Some time ago, someone did the same for me. [Hidden Content] have fun ^^
  2. Hi, where do i change the /reload regen command???
  3. So, i tried this one, but it doesn't work. Error: root@name:~/workspace/Server # gmake all -------------------------------------- Full Build Start -------------------------------------- gmake -C libserverkey dep gmake[1]: Entering directory '/root/workspace/Server/libserverkey' touch Depend g++7 -Wall -O2 -pipe -mtune=i686 -D_THREAD_SAFE -fno-exceptions -MM *.cpp > Depend /bin/sh: g++7: not found gmake[1]: *** [Makefile:38: dep] Error 127 gmake[1]: Leaving directory '/root/workspace/Server/libserverkey' gmake: *** [Makefile:63: all] Error 2
  4. Hi, can someone help? I recently moved to freebsd 12, before, i used freebsd 9.3, but with new systems everyone is using freebsd 12 so i decided to use it too. But i cant update my c++ i followed a tutorial but nothing keeps error... please give me a hand here..
  5. input_login.cpp: In member function 'void CInputLogin::Entergame(DESC*, const char*)': input_login.cpp:685: error: 'class CSoulRoulette::Error' is not a class or namespace Makefile:115: recipe for target 'OBJDIR/input_login.o' failed gmake: *** [OBJDIR/input_login.o] Error 1 ?????
  6. Go in char_item.cpp For purple potion: Find: case USE_ABILITY_UP: In: case APPLY_MOV_SPEED: AddAffect(AFFECT_MOV_SPEED, POINT_MOV_SPEED, item->GetValue(2), AFF_MOV_SPEED_POTION, item->GetValue(1), 0, true); break; Change for: case APPLY_MOV_SPEED: if (FindAffect(AFFECT_MOV_SPEED)) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("BU_ETKI_DEVAM_EDIYOR")); return false; } AddAffect(AFFECT_UNIQUE_ABILITY, POINT_MOV_SPEED, item->GetValue(2), AFF_MOV_SPEED_POTION, item->GetValue(1), 0, true, true); break; --------- For green potion: find: case USE_ABILITY_UP: in: case APPLY_ATT_SPEED: AddAffect(AFFECT_ATT_SPEED, POINT_ATT_SPEED, item->GetValue(2), AFF_ATT_SPEED_POTION, item->GetValue(1), 0, true); break; Change for: case APPLY_ATT_SPEED: if (FindAffect(AFFECT_ATT_SPEED)) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("BU_ETKI_DEVAM_EDIYOR")); return false; } AddAffect(AFFECT_UNIQUE_ABILITY, POINT_ATT_SPEED, item->GetValue(2), AFF_ATT_SPEED_POTION, item->GetValue(1), 0, true, true); break;
  7. Hi, how can i put shinning on items? Like imagine, black steel armor+7 do a shine, +8 do other shine and +9 do other shine, how can i use new shines to new armors or weapons? Thanks..
  8. Ty, i also did the same and it worked too. Can you explain me how to use a green potion and purple one per time for time of use? I mean, if the potion takes 10 mins to be complitly used, how can i make a condition to make it only used 1 time per 10 mins? In other words, i can only use 1 green potion every 10 minutes, even if die.
  9. yy, i searched for that after 15 mins after i posted it, Thanks anyway ! Can close topic, solution founded. For those who want, comment from "useless69". Char_battle.cpp
  10. Hi community, How can i make in c++ system, when i kill a monster / boss, you get a reward for it? (But only the one who killed in other words, the one who did last hit.) I tried some stuff, but nothing works like i want. If someone can help please i appreciate.
  11. Hi, i have an issue. I just implemented today the gm affect system, (When gm goes implementor, it goes SA ingame icon, when it goes high_wizard, it goes GA ingame icon.. etc etc..) but when i PM someone, it only comes with SA icon, not ga etc. can you help me?? Here is a print.. [Hidden Content]
  12. Hey tierri, can you help me how to put mounts only count time when riding??
  13. Hi, i did what you said to do, and i got a new problem which i can't pass from the log in :| any solve??
×
×
  • 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.