Jump to content

GamingPrince83

Members
  • Posts

    141
  • Joined

  • Last visited

1 Follower

Profile Information

  • Gender
    Male
  • Location
    Germany

Contact Methods

Recent Profile Visitors

2,308 profile views

GamingPrince83's Achievements

Community Regular

Community Regular (4/10)

3

Community Answers

  1. Hello there! I'm trying to edit the Movie duels remastered source code. Which version of cmake and visual basic do i need?
  2. Looks good. I have to try it out.
  3. Note: I'm not the creator of this mod, i saw it in my suggestions on Youtube. https://www.youtube.com/watch?v=_v5_APzvEHo
  4. I think you need to edit the jpg or png files with a Photo editor. For the Blaster Bolt you need to edit "blaster_blob.tga", you can find it in assets1.pk3 in the folder "\gfx\effects\".
  5. Hello guys, i'm trying to figure out how to give NPCs and possibly the Player automatic regeneration like in Kotor 2 TSL. I've found out how to make Force Heal heal a lot faster and Make Force Rage heal you instead of cost life. I help will be appreciated!
  6. Hi, i've succeeded in giving other NPC classes, Kyle bosses abilities, you need to know a little bit of coding to do so.
  7. Hi, the stance for medium style is BOTH_STAND2. The idle animations for Medium stance are BOTH_STAND2IDLE1 and BOTH_STAND2IDLE2.
  8. I've gotten it to work! else { if ( self->NPC ) {//NPCs can push more often //FIXME: vary by rank and game skill? self->client->ps.forcePowerDebounce[FP_PUSH] = level.time + 200; Copy the line marked in Yellow and replace the line in blue } else { self->client->ps.forcePowerDebounce[FP_PUSH] = level.time + self->client->ps.torsoAnimTimer + 500 // Replace this line //self->client->ps.forcePowerDebounce[FP_PUSH] = level.time + self->client->ps.torsoAnimTimer + 500; } }
  9. Hello there. This is the code for Push and Pull speed. I left some notes to help you understand the code. if ( pull ) { if ( self->NPC ) {//NPCs can push more often //FIXME: vary by rank and game skill? self->client->ps.forcePowerDebounce[FP_PULL] = level.time + 200; // This is the Pull speed for NPCs, edit this to determine how fast npcs pull! } else { self->client->ps.forcePowerDebounce[FP_PULL] = level.time + self->client->ps.torsoAnimTimer + 500; // // This is the Pull speed for the Player, edit this to determine how fast Players pull! } } else { if ( self->NPC ) {//NPCs can push more often //FIXME: vary by rank and game skill? self->client->ps.forcePowerDebounce[FP_PUSH] = level.time + 200; // This is the Push speed for NPCs, edit this to determine how fast npcs push! } else { self->client->ps.forcePowerDebounce[FP_PUSH] = level.time + self->client->ps.torsoAnimTimer + 500; // This is the Push speed for the Player, edit this to determine how fast the Player pushes! } }
  10. float forcePushPullRadius[NUM_FORCE_POWER_LEVELS] = { 0,//none 384,//256, 448,//384, 512 }; float forcePushCone[NUM_FORCE_POWER_LEVELS] = { 1.0f,//none 1.0f, 0.8f, 0.6f }; Hi, this is the code for Force Push and Pull range and radius. You can find it in wp_saber.cpp in the single player code.
×
×
  • Create New...