test124 Posted August 19, 2012 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 5 Reputation: 0 Joined: 08/15/12 Last Seen: April 23, 2014 Share Posted August 19, 2012 How to set a fake player online with function "clif_parse_WantToConnection"? Please help! Quote Link to comment Share on other sites More sharing options...
-1 test124 Posted August 20, 2012 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 5 Reputation: 0 Joined: 08/15/12 Last Seen: April 23, 2014 Author Share 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 Link to comment Share on other sites More sharing options...
Lilith Posted August 19, 2012 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 407 Reputation: 159 Joined: 11/18/11 Last Seen: November 15, 2014 Share 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 Link to comment Share on other sites More sharing options...
Lighta Posted August 19, 2012 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 737 Reputation: 216 Joined: 11/29/11 Last Seen: December 20, 2020 Share 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 Link to comment Share on other sites More sharing options...
Altimage Posted August 19, 2012 Group: Members Topic Count: 23 Topics Per Day: 0.00 Content Count: 96 Reputation: 1 Joined: 03/07/12 Last Seen: January 19, 2023 Share Posted August 19, 2012 users += 150+server[i].users; = Fake 150 user or users += 2*server[i].users; = Fake *2 user online Quote Link to comment Share on other sites More sharing options...
Lighta Posted August 20, 2012 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 737 Reputation: 216 Joined: 11/29/11 Last Seen: December 20, 2020 Share Posted August 20, 2012 Ye dunno hwo to make it spawn correctly yet. And if he'll intereact correctly too Quote Link to comment Share on other sites More sharing options...
rans Posted June 6, 2013 Group: Members Topic Count: 104 Topics Per Day: 0.02 Content Count: 429 Reputation: 60 Joined: 08/19/12 Last Seen: April 14 Share Posted June 6, 2013 hmm, is this working also in Flux CP? Quote Link to comment Share on other sites More sharing options...
Emistry Posted June 6, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: 15 hours ago Share Posted June 6, 2013 hmm, is this working also in Flux CP? i think nope.. Quote Link to comment Share on other sites More sharing options...
gmpanda08 Posted June 8, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 4 Reputation: 0 Joined: 04/27/13 Last Seen: February 1, 2017 Share Posted June 8, 2013 this is not working in eAthena right? help me put fake player im using eAthena . Quote Link to comment Share on other sites More sharing options...
Question
test124
How to set a fake player online with function "clif_parse_WantToConnection"?
Please help!
Link to comment
Share on other sites
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.