Author Topic: Infinite Predator  (Read 3714 times)

0 Members and 1 Guest are viewing this topic.

Offline DorkeyDear

  • Veteran
  • *****
  • Posts: 1507
  • I also go by Curt or menturi
Infinite Predator
« on: June 17, 2008, 12:07:35 pm »
Script Name: Infinite Predator
Script Description: Two admin commands to add and remove players from having infinite predator
Core Version: 2.6.3

/setpred <id>
/delpred <id>

Infinite Beserker:
http://www.nopaste.com/p/aucR5ZDKY
/setbskr <id>
/delbskr <id>
« Last Edit: June 21, 2008, 02:44:37 pm by DorkeyDear »

Offline RuL3zZ

  • Major(1)
  • Posts: 3
    • .:eX# |Clan:.
Re: Infinite Predator
« Reply #1 on: June 17, 2008, 12:10:26 pm »
Thank You Very much To make this Script!!

I Hope u make more from this cool Scripts!!

Thanks 5 Stars For you!!

Offline rumpel

  • Camper
  • ***
  • Posts: 410
Re: Infinite Predator
« Reply #2 on: June 21, 2008, 04:35:52 am »
great... now i can make me a bigger asshole on my server :D
banned.

Offline shantec

  • Soldier
  • **
  • Posts: 140
  • Get ANGREH!!
Re: Infinite Predator
« Reply #3 on: June 23, 2008, 10:52:13 am »
Ah the greatness.... this scriptie + invincibility + flamer + damage script = something really bollocksty, but cool :D
thanks for the script!

Edit....
aww, bollocksty?!?! What does that mean? Well... time to do a multi-assholescript =)
« Last Edit: June 23, 2008, 10:54:01 am by shantec »
Also Known As REIMA


Lol Happles (happy apples)

Offline Centurion

  • Flagrunner
  • ****
  • Posts: 699
Re: Infinite Predator
« Reply #4 on: June 24, 2008, 12:06:45 pm »
Sorry for my nubism but how can I add it?
On arsse?

Offline DorkeyDear

  • Veteran
  • *****
  • Posts: 1507
  • I also go by Curt or menturi
Re: Infinite Predator
« Reply #5 on: June 24, 2008, 12:15:01 pm »
Sorry for my nubism but how can I add it?
On arsse?
You can't w/ just ARSSE. You need access to the server files. Extract the script into the server folder/scripts.

Offline Mexer

  • Soldier
  • **
  • Posts: 121
  • real eyes. realize. real lies.
Re: Infinite Predator
« Reply #6 on: March 01, 2012, 07:48:23 am »
can you make me a script so that players who join bravo automatically have inf pred? I know it's easy but I just can't figure out some errors

thanks
Soldat devs and community: We want this game to be successful and have new players and make it popular!

Soldat devs and community: But we want the oldskool graphics and bugs and errors to be left alone! Soldat shall never change!!!

Offline Falcon`

  • Flagrunner
  • ****
  • Posts: 792
  • A wanted lagger
Re: Infinite Predator
« Reply #7 on: March 01, 2012, 01:40:38 pm »
Command() function doesn't call On(Player)Command events.
If you're not paying for something, you're not the customer; you're the product being sold.
- Andrew Lewis

Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.

Offline Mighty

  • Camper
  • ***
  • Posts: 276
Re: Infinite Predator
« Reply #8 on: March 01, 2012, 03:12:53 pm »
so thats another thing that might be a considerable suggestion ;)
« Last Edit: March 02, 2012, 10:06:56 am by Mighty »
xFire: macmil        e-mail: macekmil@gmail.com
My scripts: Accuracy Script       Flashbang       Punishments GUID
            CatchMe Gamemod       AntiFake
            CW System             AntiFakeGUID

Offline -Bendarr-

  • Soldier
  • **
  • Posts: 104
Re: Infinite Predator
« Reply #9 on: March 01, 2012, 04:03:18 pm »
falcon i was under the impression that the /set commands were admin events? if they werent they certainly should be

Offline -Bendarr-

  • Soldier
  • **
  • Posts: 104
Re: Infinite Predator
« Reply #10 on: March 01, 2012, 04:48:10 pm »
procedure OnJoinTeam(Id, Team: byte);
begin
   if Team = 2 then begin
   
        IsPred[Id] := true;
        if GetPlayerStat(Id, 'Alive') = true then begin
          GiveBonus(Id, 1);
          DrawText(Id, '  ', 0, $00000000, 0, 0, 0);
        end;
       
    end else begin
        IsPred[Id] := false;
      end;
end;

there happy Falcon? ;p

Offline Falcon`

  • Flagrunner
  • ****
  • Posts: 792
  • A wanted lagger
Re: Infinite Predator
« Reply #11 on: March 02, 2012, 06:03:41 am »
besides the fact that i don't get why would you put drawtext() there, yes :)
If you're not paying for something, you're not the customer; you're the product being sold.
- Andrew Lewis

Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.

Offline DorkeyDear

  • Veteran
  • *****
  • Posts: 1507
  • I also go by Curt or menturi
Re: Infinite Predator
« Reply #12 on: March 02, 2012, 02:55:51 pm »
besides the fact that i don't get why would you put drawtext() there, yes :)
It will remove the text that appears when receiving a bonus.

Offline Falcon`

  • Flagrunner
  • ****
  • Posts: 792
  • A wanted lagger
Re: Infinite Predator
« Reply #13 on: March 03, 2012, 05:48:31 pm »
oh right
If you're not paying for something, you're not the customer; you're the product being sold.
- Andrew Lewis

Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.