February 10, 2012, 05:50:40 PM
Your Ad Here

Author Topic: Andrew74's v1.0 - v5.0 Support Thread  (Read 496 times)

Offline Andrew74

  • *
  • Reputation: Andrew74 has no influence.
  • Posts: 19
  • Referrals: 3
Andrew74's v1.0 - v5.0 Support Thread
« on: August 15, 2010, 01:20:40 PM »
If you are having problem/Question with the any version of Andrew74's files just post your problem and Me or a member here will try to resolve the problem.

Layout:

Version #
Problem / Question
[Optional] Email ( One that was used to donate )
s7s, GT, TTG, MXS - Username
« Last Edit: August 22, 2010, 01:14:11 PM by Andrew74 »

Offline Sorox

  • *
  • Reputation: Sorox has no influence.
  • Posts: 50
  • Referrals: 0
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #1 on: August 16, 2010, 06:22:39 AM »
version v2
Question: How would this work for toggleable god mode for all? Not really the best coder :P

Code: [Select]
{
    while(1)
    {
        if(getdvar("g_knockback") != "2")
        {
            self.maxhealth = 100;
        }
        else if(getdvar("g_knockback") != "1")
        {
            self.maxhealth = 90000;
              self.health = self.maxhealth;
 
      while ( 2 )
       {
           wait .4;
        if ( self.health < self.maxhealth )
            self.health = self.maxhealth;
        }
        wait 3;
    }
}

Offline Samplez is Pro

  • *
  • Reputation: Samplez is Pro has no influence.
  • Posts: 1
  • Referrals: 0
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #2 on: August 16, 2010, 10:53:22 AM »
On your V2 Patch how do you edit the text where it says Andrew74 at the top left corner?

Offline Andrew74

  • *
  • Reputation: Andrew74 has no influence.
  • Posts: 19
  • Referrals: 3
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #3 on: August 16, 2010, 02:18:16 PM »
On your V2 Patch how do you edit the text where it says Andrew74 at the top left corner?

Open the common.ff in .FF viewer, then in the raw files bar find maps\_compass.gsc, scroll to the bottom and its right there.


Offline Andrew74

  • *
  • Reputation: Andrew74 has no influence.
  • Posts: 19
  • Referrals: 3
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #4 on: August 16, 2010, 02:22:59 PM »
version v2
Question: How would this work for toggleable god mode for all? Not really the best coder :P


Code: [Select]
doToggleGod()
{
    while(1)
    {
        if(getdvar("g_knockback") == "2")
        {
            self EnableInvulnerability();
            self EnableHealthShield( true );
        }
        else if(getdvar("g_knockback") == "1")
        {
            self DisableInvulnerability();
self EnableHealthShield( false );
}
        }
}

Offline x360glitchesx

  • *
  • Reputation: x360glitchesx has no influence.
  • Posts: 2
  • Referrals: 0
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #5 on: August 16, 2010, 02:40:38 PM »
In version 2.0 can you put points mod on and if so how do you do it ?

Offline Andrew74

  • *
  • Reputation: Andrew74 has no influence.
  • Posts: 19
  • Referrals: 3
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #6 on: August 16, 2010, 03:53:34 PM »
In version 2.0 can you put points mod on and if so how do you do it ?

Open the nzp.ff find the raw file maps/_zombiemode_score.gsc.


Add this to onPlayerSpawn thread
Code: [Select]
      self thread doZmbScore();

Then add this code in the maps\_zombiemode_score.gsc.
Code: [Select]
doZmbScore
{
        self add_to_player_score( 99999 )
}

Offline Arya.hoss

  • *
  • Reputation: Arya.hoss has no influence.
  • Posts: 4
  • Referrals: 0
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #7 on: August 16, 2010, 11:28:04 PM »
so i used andrews common.ff and modded that with decompressing it and then hex editting the file and i did all the things needed(get the bytes that i inserted back,getting the exact size and etc..) but when i burn the game and want to play it it just boots up a black screen and sometimes loop of COd WaW logo please answer i wasted 7 disks over this
is it possible to do the point mod ^^ up there does that work with any amount??? and any map?

Offline x360glitchesx

  • *
  • Reputation: x360glitchesx has no influence.
  • Posts: 2
  • Referrals: 0
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #8 on: August 17, 2010, 12:58:31 AM »
In version 2.0 can you put points mod on and if so how do you do it ?

Open the nzp.ff find the raw file maps/_zombiemode_score.gsc.


Add this to onPlayerSpawn thread
Code: [Select]
      self thread doZmbScore();


Thanks :)
Then add this code in the maps\_zombiemode_score.gsc.
Code: [Select]
doZmbScore
{
        self add_to_player_score( 99999 )
}

Offline Sorox

  • *
  • Reputation: Sorox has no influence.
  • Posts: 50
  • Referrals: 0
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #9 on: August 17, 2010, 08:14:45 AM »
version v2
Question: How would this work for toggleable god mode for all? Not really the best coder :P


Code: [Select]
doToggleGod()
{
    while(1)
    {
        if(getdvar("g_knockback") == "2")
        {
            self EnableInvulnerability();
            self EnableHealthShield( true );
        }
        else if(getdvar("g_knockback") == "1")
        {
            self DisableInvulnerability();
self EnableHealthShield( false );
}
        }
}



You sure that'll work Andrew?

Offline Arya.hoss

  • *
  • Reputation: Arya.hoss has no influence.
  • Posts: 4
  • Referrals: 0
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #10 on: August 17, 2010, 11:29:53 AM »
In version 2.0 can you put points mod on and if so how do you do it ?

Open the nzp.ff find the raw file maps/_zombiemode_score.gsc.


Add this to onPlayerSpawn thread
Code: [Select]
      self thread doZmbScore();

Then add this code in the maps\_zombiemode_score.gsc.
Code: [Select]
doZmbScore
{
        self add_to_player_score( 99999 )
}
tried this code doesnt work andrew. in none of the maps and im having problems booting the first map up it "says bad syntax see console"

Offline Andrew74

  • *
  • Reputation: Andrew74 has no influence.
  • Posts: 19
  • Referrals: 3
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #11 on: August 17, 2010, 12:34:19 PM »
In version 2.0 can you put points mod on and if so how do you do it ?

Open the nzp.ff find the raw file maps/_zombiemode_score.gsc.


Add this to onPlayerSpawn thread
Code: [Select]
      self thread doZmbScore();

Then add this code in the maps\_zombiemode_score.gsc.
Code: [Select]
doZmbScore
{
        self add_to_player_score( 99999 );
}
tried this code doesnt work andrew. in none of the maps and im having problems booting the first map up it "says bad syntax see console"


I fixed it forgot the ; at the end of add score.
Sorry =|

Offline dPod121

  • *
  • Reputation: dPod121 has no influence.
  • Posts: 2
  • Referrals: 0
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #12 on: August 17, 2010, 05:54:35 PM »
On the v2 patch, how do you edit the color of the text in the top left corner?

Offline intrainin

  • *
  • Reputation: intrainin has no influence.
  • Posts: 1
  • Referrals: 0
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #13 on: August 18, 2010, 05:24:23 AM »
Hey do you have instructions for v1.0 ?

Offline Arya.hoss

  • *
  • Reputation: Arya.hoss has no influence.
  • Posts: 4
  • Referrals: 0
Re: Andrew74's v1.0 - v5.0 Support Thread
« Reply #14 on: August 18, 2010, 05:50:35 AM »
Hey andrew is there any way to make all the mods like the name that shows up and auto god mode and stuff is there a way to make them work on all maps not just the first one cause i really want it to work on der reise oh and btw the point script worked great thanks!!(but only on the first map  :'( )