Jump to content
  • 0

about setting a fake player online


test124

Question


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  5
  • Reputation:   0
  • Joined:  08/15/12
  • Last Seen:  

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

  • -1

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  5
  • Reputation:   0
  • Joined:  08/15/12
  • Last Seen:  

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 by test124
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  407
  • Reputation:   159
  • Joined:  11/18/11
  • Last Seen:  

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 by Lilith
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  737
  • Reputation:   216
  • Joined:  11/29/11
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  96
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

users += 150+server[i].users;

= Fake 150 user

or

users += 2*server[i].users;

= Fake *2 user online

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  737
  • Reputation:   216
  • Joined:  11/29/11
  • Last Seen:  

Ye dunno hwo to make it spawn correctly yet.

And if he'll intereact correctly too

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  104
  • Topics Per Day:  0.02
  • Content Count:  429
  • Reputation:   60
  • Joined:  08/19/12
  • Last Seen:  

hmm, is this working also in Flux CP?

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

hmm, is this working also in Flux CP?

i think nope..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  4
  • Reputation:   0
  • Joined:  04/27/13
  • Last Seen:  

this is not working in eAthena right? help me put fake player im using eAthena .

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...