How do I increase the amount of pets that tamers are able to control at the same time?
Changing m_FollowersMax in Mobile.cs did'nt work.

Regards Moffe
 
changing it in mobile.cs would only register a change on newly created characters, assuming you recompile the core.

for an existing character you can do in game command:

[set followersmax 7

replace 7 with whatever # you want
 
Ok, in that case i'll have to recompile. I had the understandig that restarting the server would load any changes in scripts.
Thanks for helping out.
 
Ok, in that case i'll have to recompile. I had the understandig that restarting the server would load any changes in scripts.
Thanks for helping out.
Any changes to files in servuo/server folder requires recompile
changes to anything in servuo/scripts only requires restart
 
I mean you could also edit the serialize and deserialize to go with it so that the old ones change as well, but basically depends on how many playermobiles there even are
 
Back