Can anyone please help me with this issue im sure its not major but im lost im new at scripting so trying to learn as i go
13936
 

Attachments

  • GargisCraftingRing.cs
    2.4 KB · Views: 5
Line 12 is the issue. You have no ID with it. ie:
Yours
public CrafterRing()

Should be more like
public CrafterRing() : base(0x108a)

That base number is for the gold ring, but you need to have a base ID number. Otherwise the server has no idea what it is.
 
Line 12 is the issue. You have no ID with it. ie:
Yours
public CrafterRing()

Should be more like
public CrafterRing() : base(0x108a)

That base number is for the gold ring, but you need to have a base ID number. Otherwise the server has no idea what it is.
ok when i do that now i have so many more errors
 
public class GargishNytesBracelet : BaseBracelet
to
public class CrafterRing : BaseRing
Yep that is fixed but still gives me the other errors and if I try to add a bas I'd I get errors out the ass
Post automatically merged:

If someone wouldn't mind looking at the whole script for me
 
With the change I suggested and the one mentioned by Hammerhand it loads up fine on my test server.
 
With the change I suggested and the one mentioned by Hammerhand it loads up fine on my test server.
ok but he changed it to ring and its suppose to be a braclet
Post automatically merged:

ok but he changed it to ring and its suppose to be a braclet
scratch that lol
Post automatically merged:

ok but he changed it to ring and its suppose to be a braclet
Post automatically merged:


scratch that lol
anyway to send me a copy with the changes cause not sure if im doing something wrong cause when i do it nothing but errors
 
Last edited:
Back