Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

BcStorm - Horse Saddle fix - Updated!!!!

Status
Not open for further replies.
[̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅]
Joined
May 4, 2008
Messages
831
Reaction score
741
Location
Kanaada
Here is a nice and simple fix for the horse saddles....

in GameClientMessageHandler.cs find

PHP:
string str3 = item.GetBaseItem().Name.Replace("horse_saddle", "");

After that put.

PHP:
if (string.IsNullOrEmpty(str3)) str3 = "1";

Now you can add saddles to your horses and ride them :)

Have fun.


EDIT:
I just realized that you can fix this without adding the code...

All you have to do is make sure the saddles have the item_names horse_saddle1 and horse_saddle2 in the item_base table.

(I have tested this by removing the fix and fixing the item_table names)
 
Last edited:
Re: BcStorm - Horse Saddle fix

what about the ability to pick up your horses? :P
 
Re: BcStorm - Horse Saddle fix

Woah, Only asked for you to fix this last night, thanks, very much appreciated.

Edit: I noticed the code has "1" in it, meaning the second saddle will not add onto the horse, but the first will, just making sure you noticed that.
 
Last edited:
BcStorm - Horse Saddle fix

Woah, Only asked for you to fix this last night, thanks, very much appreciated.

Edit: I noticed the code has "1" in it, meaning the second saddle will not add onto the horse, but the first will, just making sure you noticed that.

The second was working fine for me..?


 
Re: BcStorm - Horse Saddle fix

Very simple but usefull fix, thanx ;)
 
Re: BcStorm - Horse Saddle fix

I just realized that you can fix this without adding the code...

All you have to do is make sure the saddles have the item_names horse_saddle1 and horse_saddle2 in the item_base table.

what about the ability to pick up your horses? :P

I have no errors when picking up a horse.
 
The issue im having after following this Tutorial, is I can't mount the saddle too the horse after clicking on 'USE' any ideas?
 
Status
Not open for further replies.
Back