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

0 Members and 1 Guest are viewing this topic.

Offline Paulonius

  • Elite
  • *
  • *
  • Posts: 2040
  • Activity:
    0%
  • Reputation Power: 29
  • Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.
  • Respect: +162
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #15 on: January 12, 2010, 11:27:10 AM »
0
I suppose you are right. I switched tags in a script last week according to your semantics, but I was not sure whether it was standard vernacular or just my preference. 

I like where you are heading with this regardless. Have you put together a sub that returns durability yet? I have been badgering EN to write a sub that parses out the durability on an item and returns it as a variable so that I can use it to apply PoF prior to imbue...  I think I could do it, but it wouldn't be pretty.
This coin declares Caesar is "Dictator for Life." He did serve as Dictator for the remainder of his life, but his life would end only a few weeks after this issue. For Caesar to put his image on coins and essentially declare himself king was too much for Brutus and his republican allies.

"If everything seems under control, you're not going fast enough'
-Mario Andretti

"If everyone is thinking alike, someone isn't thinking."
- General George Patton Jr

Scrripty

  • Guest
Re: Mwincs. Crafting Scripts
« Reply #16 on: January 12, 2010, 11:28:38 AM »
0
I believe it's already written. :)  I didn't write it, but I've seen a good durability checker somewhere...

Offline Paulonius

  • Elite
  • *
  • *
  • Posts: 2040
  • Activity:
    0%
  • Reputation Power: 29
  • Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.
  • Respect: +162
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #17 on: January 12, 2010, 11:33:13 AM »
0
Any ideas?  I will poke around EUO and see if I can find one there, but I thought I already had.  Maybe I will start a thread here to see if anyone has one.
This coin declares Caesar is "Dictator for Life." He did serve as Dictator for the remainder of his life, but his life would end only a few weeks after this issue. For Caesar to put his image on coins and essentially declare himself king was too much for Brutus and his republican allies.

"If everything seems under control, you're not going fast enough'
-Mario Andretti

"If everyone is thinking alike, someone isn't thinking."
- General George Patton Jr

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 #18 on: January 12, 2010, 11:37:39 AM »
0
Hahaha, I can write one easily.
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 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 #19 on: January 12, 2010, 11:47:01 AM »
0
Gosub Durability (Id of item)

sets %Durability to the actual durability
sets %Max_Durability to the max durability


Code: [Select]
sub Durability
event property %1
set %string #property
str CNT Durability
if #strres < 1
return #false
Str Pos %string Durability
set %End #strres + 10
str del %string 1 %End
set %String #strres
str len %String
set %Length #strres
str Pos %String /
set %End #strres - 1
set %End2 #strres
Str Left %string %End
set %Durability #Strres
set %Right_Len %Length - %End2
STr Right %String %Right_Len
set %Max_Durability #strres
return #True
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 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 #20 on: January 12, 2010, 11:49:02 AM »
0
But, when it comes to imbuing. You want to do it out of regular leather First, and get the minimum resist and then POF it, Imbue On the resist you want, and then attempt to Enhance it.

Thats the difference between having 19 Fire and 22 FIre on an imbued piece.

Sure you go through POF and Boura Pelts, but were scripters, having butt tons of resources is what we do best :)
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 Paulonius

  • Elite
  • *
  • *
  • Posts: 2040
  • Activity:
    0%
  • Reputation Power: 29
  • Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.Paulonius is on the verge of being accepted.
  • Respect: +162
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #21 on: January 12, 2010, 12:18:08 PM »
0
We are on the same page M, I am just a couple of textbooks behind you... Thanks for the sub!!!
This coin declares Caesar is "Dictator for Life." He did serve as Dictator for the remainder of his life, but his life would end only a few weeks after this issue. For Caesar to put his image on coins and essentially declare himself king was too much for Brutus and his republican allies.

"If everything seems under control, you're not going fast enough'
-Mario Andretti

"If everyone is thinking alike, someone isn't thinking."
- General George Patton Jr

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 #22 on: January 12, 2010, 12:19:44 PM »
0
np, I needed to make one anyways for the ARMY!!! BUAHAHAHAHA
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 kenshin87

  • Full Member
  • ***
  • Posts: 113
  • Activity:
    0%
  • Reputation Power: 2
  • kenshin87 has no influence.
  • Respect: +35
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #23 on: April 21, 2010, 11:42:23 AM »
0
so i am running the shuriken script and it seems to not be working anymore? it opens the crafting menu for the shurikens then it just keeps repeating i believe the line is
wait 1
until #contsize = %CraftMenu || %Timer_Limit < #scnt

630 and 631

goes through that then goes and repopens the tool again. any help on this?

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 #24 on: April 21, 2010, 02:06:54 PM »
0
I was hoping noone would notice!!! change %Craftmenu at the top of the script to 530_497 I'll do it later tonight when I get home.
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 kenshin87

  • Full Member
  • ***
  • Posts: 113
  • Activity:
    0%
  • Reputation Power: 2
  • kenshin87 has no influence.
  • Respect: +35
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #25 on: April 21, 2010, 02:57:05 PM »
0
haha caught you your sneakiness! thank you for the support

Offline kenshin87

  • Full Member
  • ***
  • Posts: 113
  • Activity:
    0%
  • Reputation Power: 2
  • kenshin87 has no influence.
  • Respect: +35
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #26 on: April 24, 2010, 02:26:22 PM »
0
ahhh the countless hours saved! thank you mwinc for the support

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 #27 on: April 28, 2010, 10:30:08 PM »
0
Fixed the Armor Crafter, and the Shurikens. I removed the Bola Crafter and the Wood Pulp until I get them Fixed.
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 Hoby

  • Elite
  • *
  • *
  • Posts: 1344
  • Activity:
    0%
  • Reputation Power: 14
  • Hoby barely matters.Hoby barely matters.
  • Gender: Male
  • Respect: +79
  • Referrals: 1
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #28 on: April 29, 2010, 07:53:09 AM »
0
awesome thanks
I like you, your death shall be quick and painless!!
I may have alzheimers, but at least I don't have alzheimers.
Walruses are like vampires, only awesome
Pwned-The total domination or shut down of a person or thing. 
I believe a hangover is gods way of saying you kicked ass last night!
Life's to short to remove usb safely.

Offline barginy

  • Newbie
  • *
  • Posts: 7
  • Activity:
    0%
  • Reputation Power: 1
  • barginy has no influence.
  • Respect: +2
  • Referrals: 0
    • View Profile
Re: Mwincs. Crafting Scripts
« Reply #29 on: March 29, 2011, 08:17:51 AM »
0
Is this no longer downloadable?

Tags: