Burgershot
  • Home
  • Members
  • Team
  • Help
  • Search
  • Register
  • Login
  • Home
  • Members
  • Help
  • Search
Burgershot General Programming clear/empty an array

 
  • 0 Vote(s) - 0 Average
clear/empty an array
redex
Offline

Burgershot Member
Posts: 10
Threads: 5
Joined: May 2021
Reputation: 0
Location: Germany
#1
2021-07-31, 01:21 PM
hi!
i wanted to know is there anyway to clear an array with only a few lines? i have player info in this array:
Code:
enum e_playerinfo
{
    someInt,
    Float:someFloat,
    someString[144],
}
new playerInfo[MAX_PLAYERS][e_playerinfo];


and i wanted to know how can i clear it in on player disconnect after saving the values in sql, i used to do like this:
Code:
public OnPlayerDisconnect(...)
{

    playerInfo[playerid][...] = 0;
    playerInfo[playerid][...] = 0.0;
    playerInfo[playerid][...] = "";
    ...

}
and i had to do this for every variable i add, is there anyway to make this more simple?
« Next Oldest | Next Newest »



Messages In This Thread
clear/empty an array - by redex - 2021-07-31, 01:21 PM
RE: clear/empty an array - by Pinch - 2021-07-31, 03:53 PM
RE: clear/empty an array - by redex - 2021-07-31, 05:09 PM
RE: clear/empty an array - by Pinch - 2021-07-31, 07:33 PM
RE: clear/empty an array - by Banditul - 2021-07-31, 08:20 PM
RE: clear/empty an array - by Pinch - 2021-08-01, 12:22 PM
RE: clear/empty an array - by redex - 2021-08-02, 05:29 PM

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Burgershot - Powered by our Community and MyBB Original Theme by Emerald

Linear Mode
Threaded Mode