Jump to content

ReFresh

Active Member
  • Posts

    1797
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Everything posted by ReFresh

  1. Hey guys, I have small question. Someone know how to set fixed position for the text in this function to not overflow the left side of the game screen? Now, if I'll change any value for x postion, it will overflow to the left. The text position is affected by affect image, so it looks like, 1st image has x position and 2nd image has x+20 position, I want to set all the texts at one selected position. Thanks for answers! Sincerely, ReFresh
  2. Did you checked coordinates, if they're not colliding with another map? I recommend you to use Atlas Manager. And what about server part?
  3. I had this error many times and I always fixed it. It can be, because you wrongly added map to atlasinfo with wrong coordinates, it can be nonexisting path to the map folder, wrongly packed files like property one, because of folders, which contain ÆÄÀÏÀÌ ¾øÀ» °¡´É¼ºÀÌ ¸¹½À´Ï´Ù characters, which not every packer can pack correctly. Etc. it's really common error, which you should be able to fix.
  4. @[007]DawisHU I will try it and if it will work, I will mark your answer as the best solution.
  5. @[007]DawisHUIt seems to be correct solution. I will give reaction to your post, if it will work.
  6. @Artvr3No, it won't work. I'm already using this function to hide armor and weapon effects, it won't hide footsteps (DustGap).
  7. Good point, but sound effect is another thing. I didn't think about it, because almost no one have the sound effects turned on and it's really hard to identify, where the player is, just by hearing the sound effect, it's not the CS:GO. But sure, disable the sound effects wouldn't be bad idea too, but I was talking about the visual effect, which you can see, when someone is running.
  8. Hey guys, can someone tell me where I can find the effect of footsteps in client source? I need to hide them when ninja is in camouflage. Thanks for possible answers! Sincerely, ReFresh
  9. Hey guys, I'm wondering how to hide taskbar quickslot tooltip when help window is opened, because when you open the help window and hover over the items or skills, which you have in taskbar quickslot, you will see the tooltip, which won't disappear until you close the help window and hover over another tooltip somewhere. The tooltip should be hidden when the help window is opened like the other tooltips are. I tried to lock these slots like below: File: uihelp.py But it doesn't work, surprisingly... xD Everyone has this problem, I'm sure there's no one who have fixed that, so would be nice, if someone can share with us some solution. Thanks for possible answers! Sincerely, ReFresh
  10. @Gurgarath And how you would do that globally for all newly added elixirs (for example for 50 new elixirs with different vnums), if my way is not effective? My way worked for me years ago.
  11. Sure, I forgot to mention that. But it will work, if you change the item type to 18.
  12. You can do that by pc.setqf via quest: [Hidden Content]
  13. That's why I'm using direct database editing for item_proto. I really hate the .txt reading from server, because you can fu*k it up really easy and then you will be searching for a problem for long time and you will always end searching with item_proto problem.
  14. To fix the hair problem, just add 46039.sub file into icon/hair/ and in the .sub file edit the image name. And for the armor problem, I think you fked up client sided item_proto, probably wrongly packed or you fked up some lines in item_proto, one missing space or tab can cause the problem like you have with the armor. And another problem could be a item_vnum range, but I don't think it's your case, but there're are some number ranges for items.
  15. It should be really simple for someone who knows c++, you need to make list with variables for item qualities, which need to be assigned to concrete items via c++ cases:. I think this is the easiest way, how to do that. Another way is to add new column to server item_proto with numbers for item quality and make a function, which will assign colored name of concrete item to that quality number. I'm not so experienced in c++ to make that for you. It's just suggestion to how it could be done. You can just hope, someone will have free time to make that for you, because it's not that hard.
  16. Hey guys, I just found visual bug of highlight system. How to trigger this visual bug? Simply. Recieve some new items, which will be highlighted by highlight system, then do not unmark them and switch your character to another on the same account and have some items in inventory on that switched character. Now you will see the same count of items highlighted in the inventory as you had on the character before switch. Would be really nice, if someone have solution for this visual bug, because I think many people have the same problem. Thanks for possible answers! Sincerely, ReFresh
  17. What I remember, the bonuses won't work over 100%, it's max value made by default. You have to edit some lines of code in server source.
  18. No one can help you with that, we can't see the problem without seeing your quest. Show us your quest, then we can tell you where could be the problem.
  19. Show us the screenshot of the mentioned problem, but I think you did a mistake in client sided item_proto. And client sysser is clean?
  20. Thanks, but I'm not sure, if the bool should be there twice, but in another class. Is that correct? protected: friend class CInputDB; bool OnAfterCreatedItem(); //FIX REAL TIME FIRST USE friend class CHARACTER; bool OnAfterCreatedItem(); //FIX REAL TIME FIRST USE Ah, as I can see, the way above will cause error with overloaded variable. So, this way is correct? protected: friend class CInputDB; //FIX REAL TIME FIRST USE friend class CHARACTER; bool OnAfterCreatedItem(); //FIX REAL TIME FIRST USE But then I can remove the friend class CInputDB; or not? It will be used in both classes at the same time? Yeah, maybe dumb question, but for me it's not really clear from your tut.
  21. One guy told me that this works for him: But it still doesn't work for me. Anyone knows the complete solution?
×
×
  • 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.