We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Iter_Remove is failing/not working on custom array of iterators
public OnPlayerDisconnect(playerid, reason) { new facid = fmember[playerid]; if(facid > 0) { Iter_Remove(FactionMembers_List[facid], playerid); } }
but the player id stills on the facid list
The text was updated successfully, but these errors were encountered:
Show output with this:
public OnPlayerDisconnect(playerid, reason) { new facid = fmember[playerid]; if (facid > 0) { foreach (new id : FactionMembers_List[facid]) { printf("BEFORE playerid = %d", id); } Iter_Remove(FactionMembers_List[facid], playerid); foreach (new id : FactionMembers_List[facid]) { printf("AFTER playerid = %d", id); } } }
Sorry, something went wrong.
same for Iter_Clear in OnPlayerDisconnect
No branches or pull requests
Iter_Remove is failing/not working on custom array of iterators
but the player id stills on the facid list
The text was updated successfully, but these errors were encountered: