UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - AllMoDs

had to make for my map so i thought i post so everyone can use

Spoiler: click to open...



















7 years ago
creds not shore

anima update added




hope this helps.  every thing else i found on the net didn't work at all
so i got this working after lots of testing and game crashes

sorry for spelling and crappy looking tut
1st
thread maps\zub_spawn_freeze::freeze_init();
add that in _zombiemode.gsc
under this part
Spoiler: click to open...
maps\_zombiemode_blockers_new::init();
   maps\_zombiemode_spawner::init();
   maps\_zombiemode_powerups::init();
   maps\_zombiemode_radio::init();   
   maps\_zombiemode_perks::init();
   //maps\_zombiemode_dogs::init();
   maps\_zombiemode_bowie::bowie_init();
   maps\_zombiemode_cymbal_monkey::init();
   maps\_zombiemode_betty::init();
   maps\_zombiemode_timer::init();
   maps\_zombiemode_auto_turret::init();
like this
Spoiler: click to open...
maps\_zombiemode_blockers_new::init();
   maps\_zombiemode_spawner::init();
   maps\_zombiemode_powerups::init();
   maps\_zombiemode_radio::init();   
   maps\_zombiemode_perks::init();
   //maps\_zombiemode_dogs::init();
   maps\_zombiemode_bowie::bowie_init();
   maps\_zombiemode_cymbal_monkey::init();
   maps\_zombiemode_betty::init();
   maps\_zombiemode_timer::init();
   maps\_zombiemode_auto_turret::init();
   thread maps\zub_spawn_freeze::freeze_init(); // see here


put that in your mods/yourmapname/maps

TO ADD I NEW GUN CHANG EVERY WHERE ray_gun IS WITH YOUR GUN
guns must have this on it or you will get a error
http://prntscr.com/dn9lsy

in radiant select your zombie model hit n on keyboard and put this

the targetname & freeze_boss part hit enter


there are notes in the gsc that will help you make it more custom to how you want ai to do things

this runs when the zombe shoots how fast shoot and more
Spoiler: click to open...
zombdoshoot()

{

   self endon( "death" );

   for(;;)

   {
      
      self notify( "zombie_acquire_enemy" );
      
      close_zombie = get_closest_valid_player( self.origin, true );
      
      close_zombie.favoriteenemy = self;

      lockspot = close_zombie gettagorigin("b_c_head");
      
      //if (distance(self.origin, close_zombie.origin) < 1000 ) // Checks if there is a known enemy in distance for my boss if [true] shoot
      //if(self CanSee(close_zombie)) //shots you if mele range
      if ( self IsKnownEnemyInRadius( self.origin, 400 ) ) // Checks if there is a known enemy in a radius from my boss if [true]  dus not shoot teal yore out of Radius
      {
         
         self SetLookAt( lockspot, 0.05 );
         self AimAtPos( lockspot, 0.09 );
         self shoot(5.1);
         self notify( "zombie_acquire_enemy" );
      }

      else

      {

         self SetLookAt( lockspot, 0.05 );

         self AimAtPos( lockspot, 0.09 );
      
         self SetRunToPos( close_zombie.origin );
         self notify( "zombie_acquire_enemy" );

      }

   wait (randomfloatrange(0.2, 1.1)); // how often ai shoots

   }

}


look for this in the gsc pick 1 thats gives what you want 
Spoiler: click to open...
//if (distance(self.origin, close_zombie.origin) < 1000 ) // Checks if there is a known enemy in distance for my boss if [true] shoot
      //if(self CanSee(close_zombie)) //shots you if melee range
      if ( self IsKnownEnemyInRadius( self.origin, 400 ) ) // Checks if there is a known enemy in a radius from my boss if [true]  dus not shoot teal yore out of Radius


 if ( self IsKnownEnemyInRadius( self.origin, 400 ) )   if used 400 can be changed
if you don't use this method take it out and use a diff one remove // from in front of the if to use diff one




thats when the ai will shoot  and what to do when not shooting  the 5.1 in this self shoot(5.1); is the accuracy of the ai 5.1 is a allways hit you in the head allmost every time
Spoiler: click to open...
if ( self IsKnownEnemyInRadius( self.origin, 400 ) ) // Checks if there is a known enemy in a radius from my boss if [true]  dus not shoot teal yore out of Radius
      {
         
         self SetLookAt( lockspot, 0.05 );
         self AimAtPos( lockspot, 0.09 );
         self shoot(5.1);
         self notify( "zombie_acquire_enemy" );
      }

      else

      {

         self SetLookAt( lockspot, 0.05 );

         self AimAtPos( lockspot, 0.09 );
      
         self SetRunToPos( close_zombie.origin );
         self notify( "zombie_acquire_enemy" );

      }

you can add what ever you want in this part like anima or what ever when shooting or not

if you use as is the zombie shoots at you if more then 400 dis from him and walks to you if your in the 400 dis
so make the 400 lower and you can add what you want him to do if your in range here
self SetRunToPos( close_zombie.origin );
replace it with whet you want him to do or thread somthing new


you can set custom model for zombie  in this gsc to

compile your map and dun



if you like to add custom zombie xanima easy


put that in your mods/yourmapname

make your xanima convert it
open generic_human.atr you just put in maps folder

look for this line
ai_zombie_crawl_jump_down_189
add the name of the  new anima  you just made under here
i put this in front off all mine
ai_zombie_


add this in mod.csv
xanim,new anima name
like this
ai_zombie_jump_shot


put this in the zub_spawn_freeze.gsc
ON WHERE YOU WANT ANIMA TO PLAY

Spoiler: click to open...
self trowrocks();
Spoiler: click to open...
trowrocks()
{
   traverseData = [];
   
   traverseData[ "traverseAnim" ]         = %YOUR ANIMA NAME;  //SEE THIS

   DoTraverse( traverseData );
}
add it like this  if you add it before he shoots anima will play out b4 he shoots
if you and self trowrocks(); where self SetRunToPos( close_zombie.origin ); is he will do anima when in rang you set where the 400 is here
      if ( self IsKnownEnemyInRadius( self.origin, 400 ) ) // Checks if there is a known enemy in a radius from my boss if [true]  dus not shoot teal yore out of Radius




i put in both here for a mod im helping a friend with
Spoiler: click to open...
zombshoot2()

{

   self endon( "death" );

   for(;;)

   {
      
      self notify( "zombie_acquire_enemy" );
      
      close_zombie = get_closest_valid_player( self.origin, true );
      
      close_zombie.favoriteenemy = self;

      hitLoc = close_zombie gettagorigin("b_c_head");
      
      //if (distance(self.origin, close_zombie.origin) < 1000 ) // Checks if there is a known enemy in distance for my boss if [true] shoot
      if ( self IsKnownEnemyInRadius( self.origin, 50 ) ) // Checks if there is a known enemy in a radius for my boss if [true]  dus not shoot teal yore out of Radius
      //if(self CanSee(close_zombie)) //shots you if mele range
      {
         
         self SetLookAt( hitLoc, 0.05 ); // works same puting close_zombie and not hitLoc
         self AimAtPos( hitLoc, 0.09 );
         
         self trowrocks();
         self shoot(5.1);
         self notify( "zombie_acquire_enemy" );
      }

      else

      {

         self SetLookAt( hitLoc, 0.05 );

         self AimAtPos( hitLoc, 0.09 );
      
         
         self trowrocks();
         self notify( "zombie_acquire_enemy" );

      }

   wait (randomfloatrange(0.2, 1.1));

   }

}

trowrocks()
{
   traverseData = [];
   
   traverseData[ "traverseAnim" ]         = %YOUR ANIMA NAME;  // SEE THIS

   DoTraverse( traverseData );
}
vid of anima working

Double Post Merge: December 24, 2016, 12:08:31 am
added xanima update to tut

compile your map and dun
7 years ago
I'm recruiting help need scripters mapper and help on zombie model stuff  and some hud stuff pm me if you can help
8 years ago
and some of us still use ugx team speak
teamspeak server name:  ts3.ugx-mods.com

Double Post Merge: December 01, 2015, 07:29:44 pm


ADD YOUR INFO LIKE THIS

WaW:Name:    AllMoDs
Steam:Name:  AllMoDs
8 years ago
                                                                 
Map Progress:
87%


                                                               

 full zombie Aerial battle


creds
offthewall / rigging goku and more & allways there to help
BluntStuffy / zombie anime ai boss  help & allways there to help
Josemassacre / rigging and more
Harry Bo21 /allways there to help and help me on using fx ed to make kamehameha and perk files
HitmanVere /allways there to help  help me with where to look to make my hud right and more
jei9363 / helped me fix my zombie boss
redspace200/ help
Dr.GiggleZ /  help and more
UGX /never would have started  if i never saw this site
alaurenc9 / used his tut to make my 1st  perk
DidUknowiPwn/ used his hud perk  tut
codmoddd1234 / zombie help
my work

maping
models
rigging
xanim
Fx
sound


                                                   

testers
Son-Goku
MajorPwnege01
fatal_uzi
                                                                                   AllMoDs AKA KrooKlyN's
                                                                                   DragonBall Z Zpmbies





                                                                            demo
Spoiler: click to open...
in this demo there is
5 perks 4 ARE
a Easter Egg find all 7 dragonballs
super meter active
2 boss fights
1  power up
2 ATM's  for player to give other players money
 here is the demo


                                                                           mediafire link

                                                                           gogle drive
POST ANY BUGS OTHER THEN CLIPPING TY




updates
Spoiler: click to open...






[T4M] NEEDED
https://.com/forum/index.php/topic,8092.0.html

Main Menu Video


perk 

perks
Spoiler: click to open...
gives you Instant Transmission ability




reduces ki amount used for everything by 50%



increase ki charge rate for everything by 50%



level up Super Saiyan all the the way to god blue





animation
Spoiler: click to open...



s bomb


Super Saiyan 2 transformation
Spoiler: click to open...

animated hud
Spoiler: click to open...


character select
Spoiler: click to open...




Goku models added more to go
Spoiler: click to open...

ssj 2

ssj 3

ssj 4 not added yet

ssj gods


Vegeta models added
Spoiler: click to open...

ssj 2


 Guns AKA DBZ Attacks
kamehameha x1, x2 and x3 in 1
Spoiler: click to open...

X10 kamehameha
Spoiler: click to open...


more pics

Spoiler: click to open...




9 years ago
im AllMoDs  im new and don't no where to post to see who wants to help me make a map i have made custom player models and custom zombie models in maya 2015  im working on rigging them now the map is a dragon ball z zombies   main menu screen and solo vid all dun if you like to help pm me ty you all i like this site best for map making
9 years ago
Loading ...