• 0
Sign in to follow this  
Followers 0

[закрыто] Баг с командой

Question

Когда ввожу команду (в коде ниже есть), то ничего не происходит, если указываю Id и мир то выскакиевает "Используйте: /setworld [id] [world]"

 

Спойлер

CMD:setworld(playerid,params[])
{
	if(sscanf(params, "ud",params[0]),(params[1])) return SendClientMessage(playerid,COLOR_WHITE,"Используйте: /setworld [id] [world]");
	SetPlayerVirtualWorld(params[1]);
	new string[100];
    format(string, sizeof(string), "[A] Администратор %s[%d] установил мир №%d игроку %s", Player[playerid][pName],playerid,params[1],Player[params[0]][pName]);
    SendAdminMessage(COLOR_GRAY, string);
	return 1;
}

 

 

Share this post


Link to post
Share on other sites

1 answer to this question

  • 0

Гость Андрей,

Спойлер

CMD:setworld(playerid,params[])
{
	if(sscanf(params, "ud",params[0],params[1])) return SendClientMessage(playerid,COLOR_WHITE,"Используйте: /setworld [id] [world]");
	SetPlayerVirtualWorld(params[1]);
	new string[100];
	format(string, sizeof(string), "[A] Администратор %s[%d] установил мир №%d игроку %s", Player[playerid][pName],playerid,params[1],Player[params[0]][pName]);
	SendAdminMessage(COLOR_GRAY, string);
	return 1;
}

 

 

Настоятельно советую стать зарегистрированным пользователем.

Share this post


Link to post
Share on other sites
This topic is now closed to further replies.
Sign in to follow this  
Followers 0

  • Recently Browsing   0 members

    No registered users viewing this page.