yayafan Member Apr 2, 2017 #1 It's strange I found some weapon with "weapon speed 0" with latest servUO script. PaladinSword and ScytheOfFaith (custom script) Attachments ScytheOfFaith.cs 2 KB · Views: 8
It's strange I found some weapon with "weapon speed 0" with latest servUO script. PaladinSword and ScytheOfFaith (custom script)
Dexter_Lexia Member Apr 2, 2017 #2 Well, if you are using ML or above, weapon speed is defined in the MLSpeed property. Since you have not defined it, it is zero. SInce this is an issue in a custom script, I will move it to the appropriate forum.
Well, if you are using ML or above, weapon speed is defined in the MLSpeed property. Since you have not defined it, it is zero. SInce this is an issue in a custom script, I will move it to the appropriate forum.
Hammerhand Member Apr 2, 2017 #3 Not a bug. That would be due to neither custom weapon having the ML float speed. Scythe needs Code: public override float MlSpeed { get { return 3.50f; } } Not sure what the Paladin sword would need in regards to the return *.**f portion, but this tidbit is needed for that as well.
Not a bug. That would be due to neither custom weapon having the ML float speed. Scythe needs Code: public override float MlSpeed { get { return 3.50f; } } Not sure what the Paladin sword would need in regards to the return *.**f portion, but this tidbit is needed for that as well.
Dexter_Lexia Member Apr 2, 2017 #4 Or, you can simply have the weapon derive from Scythe and the weapon speed will have already been handled.
Or, you can simply have the weapon derive from Scythe and the weapon speed will have already been handled.
OP yayafan Member Apr 3, 2017 #5 hi, PaladinSword is not a custom script. Another question, how to know a weapon need this ML Speed property or not? I saw some weapon don't need this property. Last edited: Apr 3, 2017
hi, PaladinSword is not a custom script. Another question, how to know a weapon need this ML Speed property or not? I saw some weapon don't need this property.
Dexter_Lexia Member Apr 3, 2017 #6 PaladinSword isn't coming up in a search. You can search the speed of the type of weapon in UOGuide.
GriffonSpade Member Apr 3, 2017 #7 I do believe a paladin sword is a dummy script. No 'regular' paladin swords exist on OSI to my knowledge.
I do believe a paladin sword is a dummy script. No 'regular' paladin swords exist on OSI to my knowledge.