Jump to content

Lycawn

Active+ Member
  • Posts

    95
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Lycawn

  1. Did you configure proxy ip's and binds
  2. what did you change recently ? server side did you configure it properly ?
  3. I am looking like a way to find out what fills out so much space so fast ? cleaned all Logs and syserrs .. also cleaned an 8GB Syserr but seems like nothing changed in total Space
  4. Thank you! in my case there is not dwPrice already!
  5. With this change you can have same price in every kingdom At shop.cpp search for if (bOtherEmpire) pack2.items[i].price = item.price * 3; change it to : pack2.items[i].price = item.price search if (it->second) // if other empire, price is triple dwPrice *= 3; Change if (it->second) // if other empire, price is triple dwPrice *= 1;
  6. Recently , Disk space been used massively like - from 33gb to 42 in a matter of few days , so my VDI max space is 70 how can i increase it ?
  7. yeah you are probably right this code will work fine for small respawn time
  8. Quick fix for those who used other version. add to when spawn begin > when spawn.timer begin
  9. if (number(1, 100) <= iCriticalPct) { IsCritical = true; dam *= 2; EffectPacket(SE_CRITICAL); } } if (IsPC() && iCriticalPct >= 100) { dam += (dam * (iCriticalPct - 100)) / 200; } Correct ?
  10. Sharing a simple timer quest that send a notice_all when a preferred mob dies NOTE : This code will not work for really long respawn times NOTE : This code will not work for really long respawn times quest bosskillred begin state start begin when 2291.kill begin timer("spawn", 250) notice_all("Red Dragon has been killed") notice_all("Will be spawned again in 4 hours") end when spawn.timer begin notice_all("Red Dragon Spawned.") end end end Changing .kill with preferred mob Vnum & 250 is how many seconds to set the timer for the next notice. In case i scripted something wrong feel free to correct me
  11. By the way this code doesnt seem to exist in my char_skill.cpp
  12. Hello i would like to know if there's a possible way to code when player has more than 100% critical to turn into dmg
  13. Place item_proto & item_names txt on same folder > click dump proto
  14. Hello, ever since i use notepad++ as a default editor for txt Locale string auto translates to korean - Tried to change charset to Central european - windows but never saves like that always translates back to korean when re-opening Resulting into game text like Changing channel logging out etc been shown in Korean - Anyone has quick fix ?
  15. I am facing an issue with an new gold bar added (100kk) when it sold in stacks 10x Etc it gives less than half the price it should give but when sold by piece works perfectly
  16. Hello i have a weird bug - with vouchers local amount = item . get_value ( 0 ) charge_cash_by_voucher . charge ( amount , "cash" ) no matter how many times i change cash to coins it returns to Cash every time i reload
  17. Hi , i am recently added an automatic OX-event with c++ but i would like to know how to resent the event flags for OX
×
×
  • 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.