Jump to content

Mooper 99

Banned
  • Posts

    23
  • Joined

  • Last visited

Reputation

0 Neutral

Nexus Mods Profile

About Mooper 99

Profile Fields

  • Country
    United States
  • Currently Playing
    Fallout Series
  • Favourite Game
    TES4: Oblivion
  1. I am currently, making a Fallout 3 MP mod. Don't say it's impossible, because I made a perfect MP mod for Oblivion... Check my profile on the Oblivion nexus for a DL. My Fallout 3 MP mod will be out soon...
  2. I need it so when I equip a special pair of glasses, I can control an NPC, but I equip them and the keys won't work... scn aaaP2 ref me float fQuestDelayTime ref targetref short started Begin onequip ; when quest starts if started == 0 set fQuestDelayTime to 0.01 endif set me to aaaControl ;save settings for position 5 6 7 on 8 9 0 and return on backspace--------------------- if IsKeyPressed 70 == 1 ;F me.Rotate z -400 endif if IsKeyPressed 71 == 1 ;G me.Rotate z 400 endif if IsKeyPressed 81 == 1 ; Q me.PlayGroup JumpStart, 1 endif if IsKeyPressed 82 == 1 ;R me.setforcesneak 0 endif if IsKeyPressed 69 == 1 ;E key me.setForceSneak 1 endif if IsKeyPressed 220 == 1 ;\ key me.moveto player con_save FIX-SAVE con_loadgame FIX-SAVE endif if IsKeyPressed 90 == 1 ;Z me.SetAlert 1 endif if IsKeyPressed 88 == 1 ; X me.SetAlert 0 endif if IsKeyPressed 67 == 1 ;C me.setalert 1 me.PlayGroup AttackLeft, 1 set targetref to me.GetCombatTarget targetref.ModAV Health -3 endif if IsKeyPressed 66 == 1 ;B me.setalert 1 me.PlayGroup AttackPower, 1 set targetref to me.GetCombatTarget targetref.ModAV Health -5 endif ;movement animation control for the CREATURE------------------------------------------- elseif IsKeyPressed 86 == 1 ; V me.PlayGroup AttackRight, 1 set targetref to me.GetCombatTarget targetref.ModAV Health -3 endif if IsKeyPressed 65 == 1 ;A me.PlayGroup left, 1 elseif IsKeyPressed 68 == 1 ;D me.PlayGroup right, 1 elseif IsKeyPressed 87 ; W me.PlayGroup fastforward, 1 elseif IsKeyPressed 83 == 1 ;S me.PlayGroup backward, 1 else if me.IsAnimPlaying == 1 me.PlayGroup idle, 1 else me.pickidle endif elseif IsKeyPressed 90 == 1 endif end
  3. On the object effects, I pick "Script Effect", but I can't pick my script....
  4. All I want to do is make my weapon have a script effect ON HIT. Why is the GECK so different from the CS?
  5. I made a Multiplayer Mod for Oblivion. It's in my files. And it's LAN. I think I will just convert the mod for Skyrim (assuming scripts are same), and make some quick $.
  6. Too bad I made the First Ever Working Oblivion MP mod! Really I did. Check my files.
  7. if IsKeyPressed 66 == 1 ;b key me.PlayGroup AttackPower, 1 targetref.ModActorValue2 Health -15 endif I am trying to make it so each time I press the B key, my companions opponent gets hurt by 15 points. But it only makes my companion hurt himself? Help!
  8. Link: http://www.tesnexus.com/members/do_addvideo.php?id=39357 This is my MP mod I made. It was really hard to make so enjoy!
  9. Ok, will report back. It Worked!!! Thank you so much for being so patient and persistent through all this time. You have made me so happy! If you want I can post the mod on the Nexus if you want to download. Again, Thanks. Moop
  10. Ok. I will try it. And how did you know the other thread was mine? Lol [Edit] Ok my Script looks like this and its not working. scn PMControlQuestSCRIPT ref me ; the controlled creature float xfactme ; position in X float yfactme ; position in Y float zfactme ; position in Z float xfact ; position in X float yfact ; position in Y float zfact ; position in Z float height ; position in Z added depending on Xangle float speedmod ; how far the player is placed from the creature float direc ; angle in Z float angle ; used to set the angle of the fof to the players float Xangle ; angle player is looking - upp and + down short attackactivated ; is the creature attacking 1 short transformback ; used to transfor back to normal 1 Short attackingcreature ; is 1 if the creature can attack need to be 1 for attacks short started ; has the quest started float fQuestDelayTime ref targetref float movemod float distance float distanceZ float distance5 float distanceZ5 float distance6 float distanceZ6 float distance7 float distanceZ7 float health short runtoggle ref source ref getCombatTarget float MORPHcrime short moving float dist2 float dist ref source1 ref source2 short activatecounter Begin Gamemode ; when quest starts if started == 0 player.addspell PMControlSpell player.addspell SUPERFRENZY set distance to -2 set distance5 to -2 set distance6 to -2 set distance7 to -2 set started to 1 set fQuestDelayTime to 0.001 StopQuest PMControllQuest endif if transformback == 1 && me != 0 player.SetActorAlpha 1 player.setghost 0 player.UnequipItem torch02 EnablePlayerControls player.addspell PMcontrolAB set fQuestDelayTime to 0.001 set transformback to 2 me.SetUnconscious 0 elseif transformback == 2 set fQuestDelayTime to 0.001 if moving >= 1 && moving <= 9 set moving to moving + 1 me.RemoveScriptPackage me.AddScriptPackage PMControldummyPac elseif moving == 10 set moving to 1 me.RemoveScriptPackage endif if player.Getdistance me > 999999999 set moving to 0 me.moveto player endif if activatecounter >= 1 && activatecounter < 10 set activatecounter to activatecounter + 1 elseif activatecounter == 10 set activatecounter to 0 endif if iskeyPressed 32 == 1 && activatecounter == 0 set dist2 to 70 ; changing distance from player set source1 to me.PlaceAtMe PMControlActivator, 1, dist2, 0 set zfact to me.GetPos z set zfact to zfact + 100 source1.SetPos z, zfact set zfact to zfact - dist if dist < 0 set dist to 0 - dist endif set dist to 89 + dist2 - dist set source2 to me.PlaceAtMe PMControlActivator, 1, dist, 0 source2.SetPos z, zfact source1.Cast PMControlActivateSpell source2 source1.disable source2.disable set activatecounter to 1 endif set xfactme to me.GetPos x set yfactme to me.GetPos y set zfactme to me.GetPos z set direc to me.GetAngle z set angle to player.getangle z if health > me.GetAV health triggerHitShader 2 endif set health to me.GetAV health if IsKeyPressed 13 == 1 ; enter set transformback to 3 endif ; distance from player to morph--------------------------------- if IsKeyPressed 49 == 1 ;1 key set distance to distance + 0.05 elseif IsKeyPressed 50 == 1 ;2 key set distance to distance - 0.05 elseif IsKeyPressed 51 == 1 ;3 key set distanceZ to distanceZ + 1 elseif IsKeyPressed 52 == 1 ;4 key set distanceZ to distanceZ - 1 endif if distance > 9999999999 set distance to 3 elseif distance < -99999999 set distance to -5 endif if distanceZ > 99999999999 set distanceZ to 300 elseif distanceZ < -200 set distanceZ to -200 endif ;save settings for position 5 6 7 on 8 9 0 and return on backspace--------------------- if IsKeyPressed 56 == 1 ;8 key set distance5 to distance set distanceZ5 to distanceZ endif if IsKeyPressed 57 == 1 ;9 key set distance6 to distance set distanceZ6 to distanceZ endif if IsKeyPressed 48 == 1 ;0 key set distance7 to distance set distanceZ7 to distanceZ endif if IsKeyPressed 53 == 1 ;5 key set distance to distance5 set distanceZ to distanceZ5 endif if IsKeyPressed 54 == 1 ;6 key set distance to distance6 set distanceZ to distanceZ6 endif if IsKeyPressed 55 == 1 ;7 key set distance to distance7 set distanceZ to distanceZ7 endif if IsKeyPressed 8 == 1 ;backspace set distance to -2 set distanceZ to 0 endif ;movement animation control for the CREATURE------------------------------------------- ; standard run or walk if IsKeyPressed 20 == 1 ; caps lock set targetref to me.GetCombatTarget me.Cast PPPPMAttack targetref elseif IsKeyPressed 9 == 1 ; tab set runtoggle to 0 endif if IsKeyPressed 65 == 1 ;A key me.PlayGroup left, 1 elseif IsKeyPressed 68 == 1 ;D key me.PlayGroup right, 1 elseif IsKeyPressed 87 == 1 && IsKeyPressed 16 == 1 ;W and shift if runtoggle == 0 me.PlayGroup fastforward, 1 else me.PlayGroup forward, 1 endif elseif IsKeyPressed 87 ;W only if runtoggle == 0 me.PlayGroup forward, 1 else me.PlayGroup fastforward, 1 endif elseif IsKeyPressed 83 == 1 ; S key me.PlayGroup backward, 1 else if me.IsAnimPlaying == 1 me.PlayGroup idle, 1 else me.pickidle endif elseif IsKeyPressed 90 == 1 me.PlayGroup AttackPower , 1 endif if direc < 0 set angle to 360 - angle elseif direc > 360 set angle to angle - 360 endif player.SetScale 1.0 if me.getdead == 1 set transformback to 3 endif elseif transformback == 3 me.PlayGroup idle, 1 player.SetScale 1.0 player.setghost 0 EnablePlayerControls player.SetActorAlpha 1.0 set transformback to 4 elseif transformback == 4 player.removespell PMcontrolAB set fQuestDelayTime to 1 player.PlayMagicShaderVisuals effectSummonMythicDawn 1 set transformback to 5 me.SetUnconscious 0 elseif transformback == 5 set fQuestDelayTime to 0.001 set MORPHcrime to 0 set me to 0 StopQuest PMControllQuest set transformback to 0 me.pickidle endif end
  11. Ohh ok thanks. I will report back. It did not seem to work... Would like me to post the whole script? That way you can see?
  12. Can you repeat that in a simpler way?
×
×
  • Create New...