Jump to content

AlexScorpion

Premium Member
  • Posts

    47
  • Joined

  • Last visited

Everything posted by AlexScorpion

  1. so any plans for skyrim ?

    thanks

    Alex

  2. nope he's not ...

    P.S. change your avatar ..it's very misleading lol

  3. In the CNTO you copy pasted, double click it. You need to change this number: http://i.imgur.com/NQsDe.jpg So, no one can help in making the swords improvable at the grindstone? thanks :)
  4. got everything working ... now i'm wondering how do i set the amount of swords in the merchants inventory
  5. Don't copy paste nitrishapedatas, it'll wipe UVs. if it is a static like a sword, just import obj over a vanilla nitrishape. Then delete the mat and texture that gets imported from the mtl then hook up the shader node from a vanilla. if it is skinned, then you probably should update to the 3.7 niftools and export a skyrim version nif. remember it needs a dismember modifier before export. delete the whole shader block and just take one from a vanilla nif. change the dismsmeber partition body part to one of the numbers, ie 32, instead of bp_torso, Update Tspace, and it should be good to go. thanks ... going to try that :)
  6. imported new meshes into the skyrim nif and saved it copy/paste over the nitrishapedata in another skyrim nif corrected texture paths and my meshes appear as exclamation marks ingame
  7. the guy on the twitter who is suppose to be peter hines is extremly rude ...lol ... i think that it's a fake one lol
  8. hmm ... the replay value of their game just got a lot shorter ... lol .. that of course if it's true ... link please
  9. well i have a problem with restoring my password ... i;ve sent 20 requests by now an still haven't received a single mail from beth forums EDIT: nvm . fixed it
  10. i'm fine .. how about you ??
  11. lol @ejak2021 .. want someone to blame for the fact that we're still not living on the moon .... blame your govt and big corps.
  12. oooo a quick load mod .. where has it been all of these years this will speed up my work by 30 % lol thanks
  13. thanks guys ... i should have been more clear lol .. button press .. well it's actually a menu .. say if button 1 is pressed the global variable AlexAssaultArmor is set to 0 .. and when button 2 is pressed the global is set to 1 and so on .. now that script with always true line ( it needs to be true so that the formlist will be always set to my formlist) if FormListIndex != AlexAssaultArmor || FormListIndex == AlexAssaultArmor Set FormListIndex to AlexAssaultArmor Set rArmorRef to ListGetNthForm AlexAssaultAllArmorList FormListIndex endif sets the Formlistindex to my global .. if global == 1 then the index will be set to 1 (and under index 1 in my formlist i have armor number 2) and then then my armorRef is set to that index and finally i'm adding and equiping that armor ... my problem is that i cannot remove the previously equiped armor from the npc's inventory
  14. hello there again .. i seem to be stuck again :( so i've been working on my armors level up/outfit menu and recently i've switched to form list (eliminates using individual ref for each weapon/armor) i have a global that goes from 0 to 3 (button press) i have a form list with 4 armors and i have a script that checks the global and then equips an armor from that list if FormListIndex != AlexAssaultArmor || FormListIndex == AlexAssaultArmor Set FormListIndex to AlexAssaultArmor Set rArmorRef to ListGetNthForm AlexAssaultAllArmorList FormListIndex endif If rArmorRef != 0 getequiped rArmorRef == 0 && getdead == 0 if GetItemCount rArmorRef == 0 additem rArmorRef 1 1 equipitem rArmorRef 0 1 endif ;also tried something like this If rArmorRef != AlexAssaultArmor && getdead == 0 removeitem rArmorRef 1 1 else additem rArmorRef 1 1 equipitem rArmorRef 0 1 endif and this where i hit the bump ... i mean ... how do i remove and add armors with the same ref ID without writing down all possible combinations .. thanks in advance Alex
  15. thanks for the reply ... i got it to work with a custom marker from a custom cell :) yes i'm updating the scriptpackage with a variable and the package tells the trooper to move to marker
  16. cause none of the methods below have worked for me scn AlexSquadAssaultStealthToScript ref me Float Timer short doOnce Begin OnLoad if doOnce == 0 set me to getself AlexSquadMarker.moveto me ;where AlexSquadMarker is the reference id of the xmarker Set timer to 30 set AlexSquadAssaultStealthToMarker to 1 ShowMessage AlexMoveInStealthIsWorking set doOnce to 1 endif End Begin GameMode if timer > 0 set timer to timer - getsecondspassed else set AlexSquadAssaultStealthToMarker to 0 disable MarkForDelete endif End ref rSelf ref rSomeOtherRef begin gamemode set rSelf to getself rSomeOtherRef.moveto rSelf end ref rSomeOtherRef begin gamemode rSomeOtherRef.moveto this end
  17. yes that was a package destination marker ... so what would the script look like if i would like to move the marker to the activator ??? scn AlexSquadAssaultStealthToScript Float Timer short doOnce Begin OnLoad if doOnce == 0 Set timer to 30 AlexSquadMarker.moveto activator ?? set AlexSquadAssaultStealthToMarker to 1 ShowMessage AlexMoveInStealthIsWorking set doOnce to 1 endif End Begin GameMode if timer > 0 set timer to timer - getsecondspassed else set AlexSquadAssaultStealthToMarker to 0 disable MarkForDelete endif
  18. so it seems that i have cheered a bit too early ... the squad seems responding with no problems to the vanilla markers .. but the custom ones placed with the command place on do not seem to work ... i have set up an activater with a code scn AlexSquadAssaultStealthToScript Float Timer short doOnce Begin OnLoad if doOnce == 0 Set timer to 30 PlaceAtMe AlexSquadMarker 1 set AlexSquadAssaultStealthToMarker to 1 ShowMessage AlexMoveInStealthIsWorking set doOnce to 1 endif End Begin GameMode if timer > 0 set timer to timer - getsecondspassed else set AlexSquadAssaultStealthToMarker to 0 disable MarkForDelete endif End which activates a varriable in another script and another script adds a scriptpackage in which MYmarker is specified as a reference works fine with the vanilla markers .. has anyone any idea how i can force the npc move to the newly spawned marker ?? thanks Alex
  19. thanks david .. i've seen it ... ignore the last post .. it has been solved
  20. ug oh .. it seems that i'm having problems with a multilevel menu it's one main menu ... with two small sub menus ..looks like this cancel summon dismiss go silent go loud follow wait ========== commands WAIT open a submenu and command FOLLOW opens a submenu scn AlexSquadRadioScript short ibutton short messageup int iButton0 int iButton1 int iButton2 int iMenuLevel int iAlternateMessage Begin OnEquip showmessage AlexSquadSummonMenu end Begin GameMode if iMenuLevel == 0 set iButton0 to GetButtonPressed if iButton == -1 ;Wait until button was pressed return endif if iButton0 == 0 ;cancel the menu playsound WPNAlienBlasterFire2D elseif iButton0 == 1 ;summon the squad set AlexSquadDismis to 0 placeatme AlexSquadVertibird 1 set AlexSquadToManySummoned to 3 elseif iButton0 == 2 ;Dismiss the squad set AlexSquadDismis to 1 ;Dismiss the squad PlaceAtMe AlexSquadVertibird 1 elseif iButton0 == 3 ;Tell your squad to use silent weapons set AlexSquadweaponchange to 1 elseif iButton0 == 4 ;tell your squad to use primary weapons set AlexSquadweaponchange to 0 elseif iButton0 == 5 ; ShowMessage AlexWaitOptions set iMenuLevel to 1 set iButton1 to GetButtonPressed if iButton1 == -1 ; No button has been pressed yet return endif if iButton1 == 0 playsound WPNAlienBlasterFire2D elseif iButton1 == 1 set AlexSquadholdposition to 1 elseif iButton1 == 2 set AlexSquadWaitRelax to 1 endif elseif iButton0 == 6 ; ShowMessage AlexFollowOptions set iMenuLevel to 2 set iButton2 to GetButtonPressed if iButton2 == -1 ; No button has been pressed yet return endif if iButton2 == 0 playsound WPNAlienBlasterFire2D elseif iButton2 == 1 set AlexSquadFollowClose to 1 elseif iButton2 == 2 set AlexSquadFollowLong to 1 endif endif endif end after i go into either one of those sub menus .. all buttons stop functioning thanks Alex
×
×
  • Create New...