So I found one of my old quest scripts and I am trying to implement it into my server. I am having a problem with GetLootingRIghts.

CS1501: Line 40: No overload for method 'GetLootingRights' takes 2 arguments

Is the error I am getting and the file is attached.
 

Attachments

  • QuestWyrm.cs
    5.6 KB · Views: 11
Did that and got this error

CS1501: Line 40: No overload for method 'GetLootingRights' takes 1 arguments

Did some checking on other mobile scripts to see if I could find a solution to this and found that this is what I needed.

List<DamageStore> rights = creature.GetLootingRights();
 
Last edited:
Back