Jump to content

TheSilencerPL

Management
  • Posts

    3082
  • Joined

  • Last visited

  • Days Won

    94

Everything posted by TheSilencerPL

  1. The key part is the "Light" word, grep the files for that string you will know which file is being parsed. Does admis.cfg you think you are attempting to import contain that word at all? PL Kluczowe jest słowo "Light", poszukaj plików z tym ciągiem znaków i będziesz wiedział, który jest parsowany. Czy amins.cfg, który myślisz, że wczytujesz, zawiera ten wyraz?
  2. As for me the greatest share is not that important. The one with greatest share is not the one sacrificing that much, we can't tell it by the share. For example the one that finished the build could do less but did it under heavy fire, arty or something. If the one with greatest share was able to do that much it means he was not sacrificing much, he got to the job while it was peaceful around him. The one with the smallest share could go to do the job in the time of heavy fire but did his share and made the job easier for the next. In my opinion only the one that finished the job should be rewarded with spree award.
  3. No, it's not the autopromotion.lua itself. It's rather the lua_modules cvar in the config file. Check if that is ok.
  4. The problem is probably due to the autopromotion.lua. Have you downloaded it from mygamingtalk.com?
  5. Could you post oasis.cfg? I am not an expert in this matter, maybe @gaoesa or @hellreturn should take a look at it, but is it possible that you misplaced mapscript with mapconfig here?
  6. I would take a look at g_maxXP setting. I don't know how it would behave when you have it set like this. Better set it to: set g_maxXP "-1"
  7. From what I can see, there is silent mod running on Vanilla ET. So Vanilla ET is not an ordinary mod, isn't it?
  8. That's why I didn't say that we will implement it. The 3 dots mean that we will think about it. We have to investigate the possibilities, pros and cons and only after that we can make the decision. If some of you guys have some video of Vanilla ET with Quake maps, please share it.
  9. Thanks. Here is the movie that caused me to think about the way the history is taught (from 1m18s, somehow the movie does not start from the specified time if embedded in the post): [media=] [/media]
  10. Here is some nice explanation why such mistakes shouldn't happen at all: [media=]http://www.youtube.com/watch?v=jun3fzsHXj8[/media] However there is still one thing that concerns me, those camps were not run by some alien nation called Nazi, they were German camps. This is another side of the story.
  11. Hi, I started this thread to find out how the history is known by us. Many of us play ET, right? So I started wondering, after some media accident that happened recently, if anyone of you people know the historical facts that stand behind that game. I am curious how the history is being presented in your country and if it is really a true history. OK, let's get to the point Recently U.S. president Barack Obama referred to "a Polish death camp" while posthumously awarding the Presidential Medal of Freedom to Jan Karski. And now the question: Does anyone now what the problem is? Please state your opinions and share the information about how the history is taught in your country and first of all what is your personal knowledge about this topic. Remember, I stared this topic out of the curiosity, I want the discussion about it. If somehow you don't know what this all is about, please read this: http://en.wikipedia....mp"_controversy Answer: it should be named as: German Nazi Concentration and Extermination Camp
  12. thx, we will think about it. Noted
  13. TheSilencerPL

    Menu

    No problem We are glad that you finally got it working
  14. TheSilencerPL

    Menu

    When I visited your server I downloaded your pk3 file with menus: zzz_AxE_menu_v6.pk3 The menus.txt in that file differes from the menus.txt file inside the file you have posted in this thread. Maybe that is the case? In my opinion you should have menus.txt in one pk3 file only or all menus.txt should be the same.
  15. OK, I've been there, no problems for me. I used linux. Can anyone with windows connect there? EDIT1: Maybe those players that experience problems have some hacks installed and in fact those cheats cause their failures?
  16. can you provide the server IP?
  17. Confirm. For example here, the hitsound is from jaymod:
  18. Just sum the numbers up, to enable those 3 you want set g_spreeOptions to 7 (1 + 2 + 4). EDIT 1: Uh Now gaoesa ninjad me
  19. yup, looks like eneng in relation to _IO_vfprintf. This is a system library function which was called from some printf probably but something went wrong.
  20. thx, probably some anim frames configuration we have to check. thx
  21. Some comments to the code. function et_ClientSpawn calls getXP 9 times. getXP itself asks the game through the et_gentity_get To make it better, faster, less aggravating for the game store the XP locally and reuse it. For example: function et_ClientSpawn( clientNum, revived, teamChange, restoreHealth ) local valXP = getXP(clientNum) if valXP >= lvl1xp and valXP < lvl2xp then setlevel(clientNum,1,lvl1xp) elseif valXP >= lvl2xp and valXP < lvl3xp then setlevel(clientNum,2,lvl2xp) elseif valXP >= lvl3xp and valXP < lvl4xp then setlevel(clientNum,3,lvl3xp) elseif valXP >= lvl4xp and valXP < lvl5xp then setlevel(clientNum,4,lvl4xp) elseif valXP >= lvl5xp then setlevel(clientNum,5,lvl5xp) end end
×
×
  • Create New...