Tio Akima Posted March 22, 2018 Group: Members Topic Count: 94 Topics Per Day: 0.02 Content Count: 191 Reputation: 138 Joined: 09/24/12 Last Seen: March 21 Share Posted March 22, 2018 Hi guys, in map.c I want to create a basic function a function that returns the player ID, without parameters only with return ID from the player. If anyone knows Something like this: int map_get_id() { struct map_session_data* sd; sd = map->id2sd(?); return sd->bl.id; } OBS: It does not have to be exactly in map.c but must be a function that returns the player ID Can someone help me? Quote Link to comment Share on other sites More sharing options...
0 hakuren Posted March 23, 2018 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 295 Reputation: 6 Joined: 12/02/11 Last Seen: November 6, 2023 Share Posted March 23, 2018 Try to use sd->status.char_id Quote Link to comment Share on other sites More sharing options...
0 Secrets Posted March 23, 2018 Group: Developer Topic Count: 36 Topics Per Day: 0.01 Content Count: 588 Reputation: 436 Joined: 01/26/16 Last Seen: 18 hours ago Share Posted March 23, 2018 You cannot get the ID out of nowhere. You need a reference of an object containing the ID. Quote Link to comment Share on other sites More sharing options...
0 Tio Akima Posted March 23, 2018 Group: Members Topic Count: 94 Topics Per Day: 0.02 Content Count: 191 Reputation: 138 Joined: 09/24/12 Last Seen: March 21 Author Share Posted March 23, 2018 5 hours ago, Secrets said: You cannot get the ID out of nowhere. You need a reference of an object containing the ID. oh .. how sad ... so I guess my problem has no solution Secret What I'm trying to do is this. See if you can help me: In skill.c I did an area skill. This skill summon a mob. I sumono a mob and make him walk (I shoot this mob in one direction) with unit-> walktoxy (); That is, because of the unit-> walktoxy (), this mob will go through the functions: unit-> walktoxy (); unit-> walktoxy_sub (); unit-> walktoxy_timer (); right? When this mob dies (or stops walking) I want to call a skill ... skill Lord of Vermilion (WZ_VERMILION) The function that defines whether the mob has stopped walking is unit-> walktoxy_timer (); So, I need to call the skill (WZ_VERMILION) inside the function unit-> walktoxy_timer (); But for this skill to work, I need the data from the player. The information that arrives to unit-> walktoxy_timer (); are data from the MOB that walked and stopped ... The skill (WZ_VERMILION) will only work, if I call it with player data. This is a way of doing a skillshot ... Throwing the mob in one direction, and when it hits an enemy, an area skill is invoked. It sounds complicated, but it's a simple logic up to it. If you can help me, I'll be very grateful. <3 Quote Link to comment Share on other sites More sharing options...
0 sader1992 Posted March 24, 2018 Group: Content Moderator Topic Count: 55 Topics Per Day: 0.01 Content Count: 1691 Reputation: 716 Joined: 12/21/14 Last Seen: 2 hours ago Share Posted March 24, 2018 (edited) 15 hours ago, Tio Akima said: The skill (WZ_VERMILION) will only work, if I call it with player data. i am not good in rathena the source (or c++) but i think you can call the skill from with mob data instead of the players like the mvp Valkyrie Randgris (RANDGRIS) Mob-ID#1751 can do WZ_VERMILION 1751,Valkyrie Randgris@WZ_VERMILION,attack,85,21,1000,1000,5000,no,target,always,0,,,,,,, 1751,Valkyrie Randgris@WZ_VERMILION,chase,85,21,2000,1000,5000,no,target,always,0,,,,,,, so i think you can call the script on the mob you want as a last move before death i might be wrong ofc Edited March 24, 2018 by sader1992 Quote Link to comment Share on other sites More sharing options...
0 Tio Akima Posted March 24, 2018 Group: Members Topic Count: 94 Topics Per Day: 0.02 Content Count: 191 Reputation: 138 Joined: 09/24/12 Last Seen: March 21 Author Share Posted March 24, 2018 3 hours ago, sader1992 said: i am not good in rathena the source (or c++) but i think you can call the skill from with mob data instead of the players like the mvp Valkyrie Randgris (RANDGRIS) Mob-ID#1751 can do WZ_VERMILION 1751,Valkyrie Randgris@WZ_VERMILION,attack,85,21,1000,1000,5000,no,target,always,0,,,,,,, 1751,Valkyrie Randgris@WZ_VERMILION,chase,85,21,2000,1000,5000,no,target,always,0,,,,,,, so i think you can call the script on the mob you want as a last move before death i might be wrong ofc But if I call the skill using mob data, the skill damage will not be based on the player's build .. or am I mistaken? If so, it will not do me any good. Quote Link to comment Share on other sites More sharing options...
Question
Tio Akima
Hi guys,
in map.c I want to create a basic function
a function that returns the player ID, without parameters
only with return ID from the player.
If anyone knows
Something like this:
int map_get_id() { struct map_session_data* sd; sd = map->id2sd(?); return sd->bl.id; }
OBS: It does not have to be exactly in map.c
but must be a function that returns the player ID
Can someone help me?
Link to comment
Share on other sites
5 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.