test124 Posted August 19, 2012 Posted August 19, 2012 How to set a fake player online with function "clif_parse_WantToConnection"? Please help! Quote
Lilith Posted August 19, 2012 Posted August 19, 2012 (edited) see src/char/char.c //--------------------------------------------------------------------- // This function return the number of online players in all map-servers //--------------------------------------------------------------------- int count_users(void) { int i, users; users = 0; // <-- change 0 to 100, for example... for(i = 0; i < ARRAYLENGTH(server); i++) { if (server[i].fd > 0) { users += server[i].users; } } return users; } Edited August 19, 2012 by Lilith Quote
Lighta Posted August 19, 2012 Posted August 19, 2012 I think he want to put a player online without someone controling it, (a bit like autotrade). You're is just to say you have more player online that you actually do. Is that the case test124 ? If so I doubt that would be clif oriented since you won't have a client to interact with, I think wou'll more have to play with pc_setnewpc or pc_authok. That all I can tell since I don't know the solution yet Quote
Altimage Posted August 19, 2012 Posted August 19, 2012 users += 150+server[i].users; = Fake 150 user or users += 2*server[i].users; = Fake *2 user online Quote
-1 test124 Posted August 20, 2012 Author Posted August 20, 2012 (edited) I think he want to put a player online without someone controling it, (a bit like autotrade). You're is just to say you have more player online that you actually do. Is that the case test124 ? If so I doubt that would be clif oriented since you won't have a client to interact with, I think wou'll more have to play with pc_setnewpc or pc_authok. That all I can tell since I don't know the solution yet Yes! I want it very mach! I can make a player online but i can make he in a map, it has a lot of error! PS: Sorry, my en is not good. Edited August 20, 2012 by test124 Quote
Lighta Posted August 20, 2012 Posted August 20, 2012 Ye dunno hwo to make it spawn correctly yet. And if he'll intereact correctly too Quote
Emistry Posted June 6, 2013 Posted June 6, 2013 hmm, is this working also in Flux CP? i think nope.. Quote
gmpanda08 Posted June 8, 2013 Posted June 8, 2013 this is not working in eAthena right? help me put fake player im using eAthena . Quote
Question
test124
How to set a fake player online with function "clif_parse_WantToConnection"?
Please help!
8 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.