-
Posts
141 -
Joined
-
Last visited
Profile Information
-
Gender
Male
-
Location
Germany
Contact Methods
- YouTube
Recent Profile Visitors
3,893 profile views
GamingPrince83's Achievements
Community Regular (4/10)
3
Community Answers
-
Creating an original _humanoid file unique to one or more characters
GamingPrince83 commented on Linken's tutorial in Modeling
Try using a Hex Editor instead of Notepad! ? -
Hello there! I'm trying to edit the Movie duels remastered source code. Which version of cmake and visual basic do i need?
-
GamingPrince83 liked a post in a topic: The Seven Dark Jedi [WIP]
-
GamingPrince83 liked a post in a topic: ꜱᴅᴇʟᴛʀᴏᴏᴍᴛ ᴡᴏʀᴋꜱʜᴏᴘ²
-
-
GamingPrince83 liked a post in a topic: Omega Skincare Workshop
-
GamingPrince83 liked a post in a topic: Omega Skincare Workshop
-
Mark_Girland started following GamingPrince83
-
GamingPrince83 liked a file: Dark Forces II MotS - Sith Catacombs
-
Smoo liked a post in a topic: Dark Forces 2:Jedi Knight Remake!
-
kibasennin liked a post in a topic: Game crashes whenever I use Boba Fett (Mandalorian).
-
Game crashes whenever I use Boba Fett (Mandalorian).
GamingPrince83 replied to kibasennin's topic in Modding Assistance
Are you using vanilla JKA? -
GamingPrince83 liked a post in a topic: Dark Forces 2:Jedi Knight Remake!
-
NumberWan liked a post in a topic: Dark Forces 2:Jedi Knight Remake!
-
TheWhitePhoenix liked a post in a topic: Dark Forces 2:Jedi Knight Remake!
-
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
-
GamingPrince83 liked a post in a topic: New Force Powers Demo
-
GamingPrince83 liked a post in a topic: Jeff's never ending WIP's
-
How do I change the length and width of blaster bolts?
GamingPrince83 replied to Brendan1021's topic in Modding Assistance
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\". -
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!
-
bigphil2695 liked a post in a topic: NPCs that grapple like Kyle_boss
-
NPCs that grapple like Kyle_boss
GamingPrince83 replied to bigphil2695's topic in Modding Assistance
This should help you. -
bigphil2695 liked a post in a topic: NPCs that grapple like Kyle_boss
-
NPCs that grapple like Kyle_boss
GamingPrince83 replied to bigphil2695's topic in Modding Assistance
Unfortunately you need knowledge of coding. -
bigphil2695 liked a post in a topic: NPCs that grapple like Kyle_boss
-
NPCs that grapple like Kyle_boss
GamingPrince83 replied to bigphil2695's topic in Modding Assistance
Hi, i've succeeded in giving other NPC classes, Kyle bosses abilities, you need to know a little bit of coding to do so. -
Hartsinck liked a post in a topic: How to change medium stance in animation.cfg in the _humanoid folder
-
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; } }
-
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! } }
-
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.
-
Help with Force Rage Duration (Coding)!
GamingPrince83 replied to GamingPrince83's topic in Modding Assistance
Force levels 4 and 5 are Npc only.