Author Topic: Mwincs. Crafting Scripts  (Read 39617 times)

0 Members and 1 Guest are viewing this topic.

Offline manwincTopic starter

  • Elite
  • *
  • *
  • Posts: 2556
  • Activity:
    0%
  • Reputation Power: 32
  • manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!
  • Gender: Male
  • "The Devs Hard at Work"
  • Respect: +123
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #60 on: July 25, 2014, 04:46:10 PM »
0
Was Trying to just Change the way it adds/pulls data from the menu and make it easier to add/remove items from the list, but it wasn't plugging in so well. Have to start it from scratch.
Monkeys and Typewriters!

" Oh I know, We'll make a Boss Encounter that requires 3 keys per player to enter, Then we'll make it not a closed instance so you never know if you are going to pop into a fresh room or a boss that has 1% Health left with 20 dudes smashing its face in, wasting your time and effort"

Offline cybercasper

  • Full Member
  • ***
  • Posts: 228
  • Activity:
    0%
  • Reputation Power: 3
  • cybercasper has no influence.
  • Respect: +41
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #61 on: July 26, 2014, 08:24:59 AM »
0
ahh i see i wish i could help out but only thing i am really good at is moding a script with a line here and there. but ty so much so doing this it is a big help since imbuing has changed so much

Offline period

  • Newbie
  • *
  • Posts: 7
  • Activity:
    0%
  • Reputation Power: 1
  • period has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #62 on: July 27, 2014, 03:49:42 AM »
0
Thanks manwinc, you rock!! I can't wait to see what you come up with! :)

Offline Crisis

  • Global Moderator
  • *
  • *
  • Posts: 2998
  • Activity:
    3.4%
  • Reputation Power: 41
  • Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.
  • Gender: Male
  • Scripting well enough to break things!
  • Respect: +205
  • Referrals: 2
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #63 on: July 27, 2014, 09:14:54 PM »
0
Ok I am a freakin noob when it comes to this resistance stuff and what to set it to look for. I would love some advice/help figuring it out. Here are the variables that can be changed:

Code: [Select]
; Max Resist comes in handy in gear that doesn't need MULTIPLE resistances
set %Max_PH_Resistance 0
set %Max_FI_Resistance 0
set %Max_CO_Resistance 0
set %Max_PO_Resistance 0
set %Max_En_Resistance 5
; You can have 18 Energy, and 20 Poison after enhancing and Only waste
; 1 Add For instance :)
set %Min_PH_Resistance 20
set %Min_FI_Resistance 20
set %Min_CO_Resistance 20
set %Min_PO_Resistance 20
set %Min_En_Resistance 5
;My Settings:
; Normal Leather (Non gargish) Still testing :)
; Maximum Resistance - 14
; Min Physical - 2
; Min Fire - 4
; Min Cold - 3
; Min Poison - 3
; Min Energy - 3
; Regular Wood
; Min Physical - 6
; Min Fire - 4
; Min Cold - 3
; Min Poison - 4
; Min Energy - 3
;=======================================================
; My setup Stuff
set %Secure *Mwinc_ArmorCrafter_Secure_ . #charid
set %startscnt #scnt ; Start Time
set %MW_Item 0
set %Max_Resist 0
set %MW_Max_Resist 0
set %MW_Min_Resist 10
set %Min_Physical 10
set %Min_Fire 10
set %Min_Cold 10
set %Min_Poison 10
set %Min_Energy 10

Now I am thinking that I would want one resist to be as low as possible for me to imbue that one to max while keeping the other 4 resists under 10 so that it doesn't count it as one of the 5 imbue slots available. Am I correct in thinking this? If so, what would I change to set it to look for that?

If I am wrong, please explain it to this noob!

Thank you in advance!!!  8)

Offline cybercasper

  • Full Member
  • ***
  • Posts: 228
  • Activity:
    0%
  • Reputation Power: 3
  • cybercasper has no influence.
  • Respect: +41
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #64 on: August 02, 2014, 04:28:58 PM »
0
Ok I am a freakin noob when it comes to this resistance stuff and what to set it to look for. I would love some advice/help figuring it out. Here are the variables that can be changed:

Code: [Select]
; Max Resist comes in handy in gear that doesn't need MULTIPLE resistances
set %Max_PH_Resistance 0
set %Max_FI_Resistance 0
set %Max_CO_Resistance 0
set %Max_PO_Resistance 0
set %Max_En_Resistance 5
; You can have 18 Energy, and 20 Poison after enhancing and Only waste
; 1 Add For instance :)
set %Min_PH_Resistance 20
set %Min_FI_Resistance 20
set %Min_CO_Resistance 20
set %Min_PO_Resistance 20
set %Min_En_Resistance 5
;My Settings:
; Normal Leather (Non gargish) Still testing :)
; Maximum Resistance - 14
; Min Physical - 2
; Min Fire - 4
; Min Cold - 3
; Min Poison - 3
; Min Energy - 3
; Regular Wood
; Min Physical - 6
; Min Fire - 4
; Min Cold - 3
; Min Poison - 4
; Min Energy - 3
;=======================================================
; My setup Stuff
set %Secure *Mwinc_ArmorCrafter_Secure_ . #charid
set %startscnt #scnt ; Start Time
set %MW_Item 0
set %Max_Resist 0
set %MW_Max_Resist 0
set %MW_Min_Resist 10
set %Min_Physical 10
set %Min_Fire 10
set %Min_Cold 10
set %Min_Poison 10
set %Min_Energy 10

Now I am thinking that I would want one resist to be as low as possible for me to imbue that one to max while keeping the other 4 resists under 10 so that it doesn't count it as one of the 5 imbue slots available. Am I correct in thinking this? If so, what would I change to set it to look for that?

If I am wrong, please explain it to this noob!

Thank you in advance!!!  8)

No having a resist over 10 doesnt matter it wont count towards 1 of the 5 imbue slots. Like with me I was making stubbed leather with reg leather  trying to get low phy and fire so i could imbue fire and later enhance with spine for the physical. ex of pieces i was making are 4 4 8 9 10 or 4 5 7 9 11. so dont worry if they are over 10

Offline Gandolf

  • Jr. Member
  • **
  • Posts: 65
  • Activity:
    0%
  • Reputation Power: 1
  • Gandolf has no influence.
  • Respect: +24
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #65 on: October 03, 2015, 06:15:57 AM »
0
say can you help me fix this scrip MWinc. Shurikens ?
I tried it this morning don't work or am I doing something wrong ? thx

Offline cybercasper

  • Full Member
  • ***
  • Posts: 228
  • Activity:
    0%
  • Reputation Power: 3
  • cybercasper has no influence.
  • Respect: +41
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #66 on: April 08, 2018, 08:03:41 PM »
0
trying to figure out the Shurikens script. once it fills up with the 10 it doesnt remove them from belt an move them to a container. does anyone know what im doing wrong
« Last Edit: April 08, 2018, 08:15:05 PM by cybercasper »

Offline manwincTopic starter

  • Elite
  • *
  • *
  • Posts: 2556
  • Activity:
    0%
  • Reputation Power: 32
  • manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!
  • Gender: Male
  • "The Devs Hard at Work"
  • Respect: +123
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #67 on: April 08, 2018, 08:16:03 PM »
0
Ugg all these scripts are so old. One sec.
Monkeys and Typewriters!

" Oh I know, We'll make a Boss Encounter that requires 3 keys per player to enter, Then we'll make it not a closed instance so you never know if you are going to pop into a fresh room or a boss that has 1% Health left with 20 dudes smashing its face in, wasting your time and effort"

Offline cybercasper

  • Full Member
  • ***
  • Posts: 228
  • Activity:
    0%
  • Reputation Power: 3
  • cybercasper has no influence.
  • Respect: +41
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #68 on: April 08, 2018, 08:17:20 PM »
0
thank you mwincs :)

Offline manwincTopic starter

  • Elite
  • *
  • *
  • Posts: 2556
  • Activity:
    0%
  • Reputation Power: 32
  • manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!
  • Gender: Male
  • "The Devs Hard at Work"
  • Respect: +123
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #69 on: April 08, 2018, 08:24:05 PM »
0
Updated on the front page. Redownload the script and try that.
Monkeys and Typewriters!

" Oh I know, We'll make a Boss Encounter that requires 3 keys per player to enter, Then we'll make it not a closed instance so you never know if you are going to pop into a fresh room or a boss that has 1% Health left with 20 dudes smashing its face in, wasting your time and effort"

Offline cybercasper

  • Full Member
  • ***
  • Posts: 228
  • Activity:
    0%
  • Reputation Power: 3
  • cybercasper has no influence.
  • Respect: +41
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #70 on: April 08, 2018, 08:24:36 PM »
0
thanks man

Offline verdu88

  • Newbie
  • *
  • Posts: 4
  • Activity:
    0%
  • Reputation Power: 0
  • verdu88 has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #71 on: April 01, 2020, 05:02:32 AM »
0
hi won't let me download the script.

Offline Crisis

  • Global Moderator
  • *
  • *
  • Posts: 2998
  • Activity:
    3.4%
  • Reputation Power: 41
  • Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.
  • Gender: Male
  • Scripting well enough to break things!
  • Respect: +205
  • Referrals: 2
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #72 on: April 01, 2020, 05:18:06 AM »
0
You are restricted. You need to go to the New Member section and start looking at the sticked posts to see how to become a full member.

Tags: