Author Topic: Need a little help plz  (Read 3851 times)

0 Members and 1 Guest are viewing this topic.

FrieD

  • Orc Thrasher
  • ***
  • Posts: 121
  • Reputation: +0/-0
Need a little help plz
« on: September 9, 2003 03:06 pm CDT »
Hi guys im working on my own mod and i need some help from you guys if you would. My first question is

How would i go about making a crystal that only gold comes out of?

and

Where do i find what sp you mine certain stuff at? ive looked in skills.cs but its not there
« Last Edit: December 31, 1969 06:00 pm CST by FrieD »

Hersh

  • Elvin Legion
  • *****
  • Posts: 413
  • Reputation: +0/-0
(No subject)
« Reply #1 on: September 9, 2003 05:58 pm CDT »
I'm not really into mapping or messing with minning, but I'll take a shot.

Minning List is in Accessory.cs. 1-13(Small Rock to Knite). I'm geussing these  correspond to the numbers in the mission file.

Code: [Select]
instant StaticShape "1 400 2 300 3 500 4 20 5 50 6 30 7 300 8 20 9 100 10 15 11 5 12 25 13 50" {
dataBlock = "Crystal";
name = "";
position = "-1544 -1116 293.125";
rotation = "0 0 0";
destroyable = "True";
deleteOnDestroy = "False";
locked = "0";
bonus1 = "400";
bonus2 = "300";
bonus3 = "500";
bonus4 = "20";
bonus5 = "50";
bonus6 = "30";
bonus7 = "300";
bonus8 = "20";
bonus9 = "100";
bonus10 = "15";
bonus11 = "5";
bonus12 = "25";
bonus13 = "50";
};
};


Gold is number 10 So maybe you change all the other numbers down to 0 and put gold up to like 300 maybe?

As for the SP requirements...Dunno at all really, prehaps these lines?
$ItemList[Mining, 1] = "SmallRock " @ round($HardcodedItemCost[SmallRock] / %f)+2;
$ItemList[Mining, 2] = "Quartz " @ round($HardcodedItemCost[Quartz] / %f)+2;

Hersh
« Last Edit: December 31, 1969 06:00 pm CST by Hersh »

I kissed a drunk girl on the lips.
This post, by its very length, defends itself against the risk of being read.

FrieD

  • Orc Thrasher
  • ***
  • Posts: 121
  • Reputation: +0/-0
(No subject)
« Reply #2 on: September 10, 2003 06:07 am CDT »
Ill try out the crystal thing after school. THanx for the help hersh if it works ill tell you if it does or not

FrieD
« Last Edit: December 31, 1969 06:00 pm CST by FrieD »