Volarific

Users
  • Content Count

    110
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

  1. Volarific

    Grenade Launcher Hardcore Server COD4

    Ooops, my bad Should have read that again.
  2. Volarific

    {BLANK} Server's COD4 Scripts Pack

    Let me ATTEMPT to clear things up... These scripts are a majority of scripts stolen by a guy called CrAzY, these scripts were not made by him at all, nobody hacked into any "Dedicated FTP" and "toke"? everything, the co owner created a large number of the scripts, heck, some of the scripts in the pack are even by me. The main owner decided to screw over his co-owner which then made the old co-owner angry and therefore instead of letting the main owner profit off his scripts, he instead released them to the public. The scripts are already on CFG-Factory and have been for some time now, I posted the files here because I thought that people should not have to pay for scripts that were not made by them because everytime someone asks for a script from CrAzY he refuses to give it out and instead requests money for them, but then scams them also.
  3. Volarific

    CoD4x 1.8 server

    It isn't their job to help you, they volunteer their own time, just like the rest of us who have attempted to help you over the past month.
  4. Volarific

    Ar51 censorship

    Essentially it will just mean they have nowhere else to go BUT AR51
  5. {link removed/Scripts were stolen} You can find all the scripts used on the {BLANK} servers in there.
  6. Volarific

    Grenade Launcher Hardcore Server COD4

    Why get mad if it was a lucky gl shot ? Anyway, there is a way but are you running 1.7a and also are you running any thing in the localized_english_iw07.iwd ?
  7. Volarific

    any one want anti roccat Script

    What do you mean? They have a way to detect it in 1.8?
  8. Volarific

    Invisible mode on usebuttonpress

    Lossy and I said NOT to change sv_cheats to 1....
  9. Volarific

    Invisible mode on usebuttonpress

    Show me your entire code, upload it to pastebin with C++ syntax highlighting if you can.
  10. Volarific

    Change Model

    Where ever your set model script is.
  11. Volarific

    Invisible mode on usebuttonpress

    Okay after reading all the posts it appears that Lossy is right on everything... First off, it's never a good idea to enable sv_cheats on client or server, the fact you're running it on server means anyone can enable god mode if someone calls the script to turn invisible. You'll need something like this: invisibileOnUseButtonPressed() { while(!self useButtonPressed()) { if(self useButtonPressed()) { if(!isDefined(self.invisibility)) { self.invisibility = true; self hide(); } else if(isDefined(self.invisibility) && self.invisibility == true) { self show(); self.invisibility = false; } } wait 0.05; } }
  12. Volarific

    cod4x17a_dedrun on gameranger any help?

    I don't think GameRanger plugin works anymore AFAIK.
  13. Volarific

    I can't watch my demos

    I'm sure you could just upload the .flv to YouTube and post the link?
  14. Volarific

    scripts.gsm

    Why not just make it yourself? Other people worked hard to make it themselves...
  15. Volarific

    Change Model

    Theres 5 different models for "marines", the sniper model, the assault model, spec ops model, demolitions model. In my mod I use this: playerModelForWeapon( weapon ) { self detachAll(); weaponClass = tablelookup( "mp/statstable.csv", 4, weapon, 2 ); switch ( weaponClass ) { case "weapon_smg": [[game[self.pers["team"]+"_model"]["SPECOPS"]]](); break; case "weapon_assault": [[game[self.pers["team"]+"_model"]["ASSAULT"]]](); break; case "weapon_sniper": [[game[self.pers["team"]+"_model"]["SNIPER"]]](); break; case "weapon_shotgun": [[game[self.pers["team"]+"_model"]["RECON"]]](); break; default: [[game[self.pers["team"]+"_model"]["ASSAULT"]]](); break; } } Hope this helps.