Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Ore Downgrade
Author Message
Snapplewee Offline
¥Snapple¥

Posts: 1,086
Joined: Feb 2007
Post: #1
Ore Downgrade

Right now you can only break down 1 at a time.


In the past, on official servers, and most other privates, it is 10 at a time.

I was wondering if it could be changed to that.


From someone who surely abuses the hell out of this, I can tell you that you actually get LESS zeny from 10 at a time, it just takes a lot less clicking out of the equation.


I won't exactly say what I do, but I'm pretty sure most people know why I'd like this 10 at a time.


I highly doubt it will get changed, but I figured if I asked nicely.


I could also offer to find the coding line to change this, so it simply becomes a copy pasta for the GMs.
(This post was last modified: 09-25-2009 02:48 PM by Snapplewee.)
09-25-2009 02:46 PM
Find all posts by this user Quote this message in a reply
Snapplewee Offline
¥Snapple¥

Posts: 1,086
Joined: Feb 2007
Post: #2
RE: Ore Downgrade

Quote:case 2:
mes "[Puchuchartan]";
mes "Do you wish to divide a pure";
mes "enchanted stone into rough ones?";
mes "Which property do you want to";
mes "divide? Earth, Water, Fire, Wind... ";
mes "Choose one.";
next;
switch(select("Earth:Water:Fire:Wind")) {
case 1:
set .@divide,997; //Great_Nature
break;
case 2:
set .@divide,995; //Mistic_Frozen
break;
case 3:
set .@divide,994; //Flame_Heart
break;
case 4:
set .@divide,996; //Rough_Wind
break;
}
mes "[Puchuchartan]";
mes "Please enter the";
mes "number of enchanted";
mes "stones that you wish";
mes "to divide. I can only";
mes "divide up to 10 at a time.";
next;
input .@input,0,11;
if ((.@input > 0) && (.@input < 11)) {
if (countitem(.@divide) >= .@input) {
if (checkweight(908,(.@input * 30)) == 0) {
mes "[Puchuchartan]";
mes "You're carrying too";
mes "many items right now.";
mes "Put some of your stuff";
mes "in Kafra Storage, and then";
mes "come back to me, okay?";
close;
}




I think the line is somewhere in there. Can anyone help? This is eAthena's line of code, which permits up to 10.
09-25-2009 03:13 PM
Find all posts by this user Quote this message in a reply
Général_Argos Offline
Removed by GM
*****

Posts: 3,012
Joined: Jan 2006
Post: #3
RE: Ore Downgrade

Why not 100

IGN: 9000KRIM Alts:  Morradin, KRIMSTEAL
Banned: Krimlin, Krimlogas, Lord_Krimlogas, General_Argos
Krim's grocery list

¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_-KRIMLIN-¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯/
Murphy law.  The only true one.  
[Image: krimstyleg.jpg]
09-25-2009 11:31 PM
Find all posts by this user Quote this message in a reply
Snapplewee Offline
¥Snapple¥

Posts: 1,086
Joined: Feb 2007
Post: #4
RE: Ore Downgrade

That'd be totally unfair.

Sorry, but when you're breaking 10k+ at a time, 100 would just be too leet for its own good.
09-26-2009 04:52 AM
Find all posts by this user Quote this message in a reply
azurerogue Offline
One Dogma: THROW AD!
*****

Posts: 2,408
Joined: Aug 2007
Post: #5
RE: Ore Downgrade

I've never understood 100% of how RO reads scripts, but I'm pretty sure this is what you're looking for (isn't there more to the script, though?).

Quote:input .@input,0,11;
if ((.@input > 0) && (.@input < 11)) {
if (countitem(.@divide) >= .@input) {
if (checkweight(908,(.@input * 30)) == 0) {

Line 1 opens the input box where a player can enter 0-10
Line 2 makes sure the number is both greater than 0 (if it is 0, I believe the script stops, which is intended), and less than 11.
Line 3 makes sure than there are at least as many stones in your inventory as you asked it to divide.
Line 4 makes sure you have enough weight to run the script.

There should be more to this after the last dialogue though that actually carries the script out, and that's important too. But the part you're looking for is what I quoted above (out of what you posted).

- Albus Dumbledore 99/70 Professor - Albus DumbIedore 92/59 Professor
- AIbus Dumbledore 93/50 Wizard - AIbus DumbIedore 1/1 Novice
- Astaroth 99/70 Creator - Dawkins 99/70 Creator
- Exemplar 98/69 Paladin - Equitas 80/47 Paladin
- Mephistopheles 95/65 Lord Knight - Shogo Kawada 97/67 Stalker
09-26-2009 10:31 AM
Find all posts by this user Quote this message in a reply
Général_Argos Offline
Removed by GM
*****

Posts: 3,012
Joined: Jan 2006
Post: #6
RE: Ore Downgrade

We have npc warper for lazy people already it would just make sense

IGN: 9000KRIM Alts:  Morradin, KRIMSTEAL
Banned: Krimlin, Krimlogas, Lord_Krimlogas, General_Argos
Krim's grocery list

¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_-KRIMLIN-¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯_¯/
Murphy law.  The only true one.  
[Image: krimstyleg.jpg]
09-26-2009 02:04 PM
Find all posts by this user Quote this message in a reply
Aaronock Offline
Ethereal Engineer
*****

Posts: 7,642
Joined: Jun 2007
Post: #7
RE:??Ore Downgrade

Snapplewee Wrote:That'd be totally unfair.

Sorry, but when you're breaking 10k+ at a time, 100 would just be too leet for its own good.

Yes cause playing Roguelikes should be about pressing enter all day...wait what?

[Image: OHeya.gif]

*Aaronock ~ *Ezekiel Stalker ~ *Maxwell Maximillion ~ *Fazil Reis ~ *Cecil Vega
09-26-2009 02:05 PM
Find all posts by this user Quote this message in a reply
GM-Pandora Offline
Admin Extraordinaire
*******

Posts: 14,781
Joined: Sep 2005
Post: #8
RE: Ore Downgrade

Nara was already looking into this before it was brought up, but it's not a priority.

Snotty comments unwelcome.

~ Server Admin ~
Vote daily to help us grow!
Review us on RateMyServer every 6 months!
Have a problem? Use the Support Ticket System!
Join the Test&Dev team to help out!
09-29-2009 11:41 AM
Find all posts by this user Quote this message in a reply
Snapplewee Offline
¥Snapple¥

Posts: 1,086
Joined: Feb 2007
Post: #9
RE: Ore Downgrade

Awesome Icon_wink
10-01-2009 07:05 PM
Find all posts by this user Quote this message in a reply
Matsu Online
King of Aesthetic
****

Posts: 322
Joined: Mar 2009
Post: #10
RE: Ore Downgrade

keep it as it is.. it's fine like this. Dont just be so lazy...
10-06-2009 03:48 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump: