08.06.2011, 13:01
You could just change it from /enter to the actual enter key...which means it isnt a command, but a keypress... you want to change the 1024 to the enter key... that is currently set to the ALT KEY.... Like So
Code:
//---------------------------------------------------------- public OnPlayerKeyStateChange(playerid, newkeys, oldkeys) { if (PRESSED(1024)) { if(IsPlayerInRangeOfPoint(playerid,3,-1091.3252,-1613.6198,77.0530)) // Admin Area { //DOOO WHAT EVERE HERE << } } }