... Seriously?
If you look at most of the coding help topics I have started, they show me trying to explain some weird phenomenon and with large block of complicated code building up to what my problem is, and then the solution that the first poster comes up with would be something like "did you know you can do \" to place a quote inside a quote?"
For a very long time, I used this code before I realized it was possible to do %player.client
function getclientfromplayer(%player)
{
for(%a=0; %a<clientgroup.getcount(); %a++)
{
if((%b=clientgroup.getobject(%a)).player == %player)
return %b;
}
return -1;
}
I never really learned the basics, I kinda jumped right into solving complicated coding projects (for me at the time)
Also: *cough cough*