25.05.2015, 14:53
I got a problem about /changename . I replace the coords.
Check This out
Old:
NEW:
when i /changename , It says in the name change place
CMD:
I need a Help with VW INT about this. I hope this problem about VW or INT. Help
Check This out
Old:
PHP код:
IsAtNameChange(playerid)
{
if(IsPlayerConnected(playerid))
{
if(IsPlayerInRangeOfPoint(playerid, 3.0,1154.7295,-1440.2323,15.7969))
{
return 1;
}
}
return 0;
}
PHP код:
IsAtNameChange(playerid)
{
if(IsPlayerConnected(playerid))
{
if(IsPlayerInRangeOfPoint(playerid, 3.0,1488.7249,-1771.5569,18.7958))
{
return 1;
}
}
return 0;
}
CMD:
PHP код:
CMD:changename(playerid, params[])
{
if(IsAtNameChange(playerid) && PlayerInfo[playerid][pLevel] == 1)
{
ShowPlayerDialog( playerid, DIALOG_NAMECHANGE, DIALOG_STYLE_INPUT, "Name Change","Please enter your new desired name!\n\nNote: Name Changes cost $15,000 per level.", "Change", "Cancel" );
}
else
{
SendClientMessageEx( playerid, COLOR_WHITE, " You are not in the Name Change Place, or above level 1" );
}
return 1;
}
I need a Help with VW INT about this. I hope this problem about VW or INT. Help