[HELP] Skin Changing and Skin Saving
#1

I am making a RPG server .
However, i created a clothing shop so i want to know how to make PAWNo script which checks if the player is inside the clothing shop (interior)
and when you type /skin [skinID] to change your skin and saves it.
Sorry my english is not the best .
Thank you
Reply
#2

IsPlayerToPoint ( Search it )

Then make a command which updates your skin stat... ( if you dont have a stat make one)
Reply
#3

Oh damn!

http://forum.sa-mp.com/index.php?topic=82650.0
Reply
#4

Okay , i tryed to make a system myself but i got a problem .
The script i have written is :
Code:
  new cmd[256];
	if(strcmp(cmd, "/skin", true) == 0)
	{
 if(IsPlayerInRangeOfPoint(playerid, 15.0, 161.37, -96.61, 1001.80) == 0 ) return SendClientMessage(playerid, COLOR_RED, "You are not in clothing shop !");
	else if(IsPlayerInRangeOfPoint(playerid, 15.0, 161.37, -96.61, 1001.80) == 1 )
 {
	new idx;
	new tmp[256];
	tmp = strtok(cmdtext, idx);
	if(!strlen(tmp))
	{
	SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /skin [SKIN]");
	return 1;
	}
 	new level;
	level = strval(tmp);
	SetPlayerSkin(playerid, level);
	return 1;
	}
	return 1;
}
Its under "public OnPlayerCommandText(playerid, cmdtext[])" of course.
I do not get errors on compiling, but i have problem In Game. So, the problem is that when i get in the server, it returns me
"You are not in clothing shop" on every command i type (/login and etc.).
Can someone help me to fix that ?
And if its possible PM me the edited/working script or post in the thread + tell me where was the problem :P

Thank you !



PS: I am noob in scripting, but notice i started to learn to script some days ago !
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)