|
|
#1 |
|
Little Clucker
![]() Join Date: May 2010
Posts: 21
Reputation: 0
|
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
|
|
|
|
|
#2 |
|
Gangsta
![]() ![]() ![]() ![]() Join Date: Nov 2008
Location: Vatican City
Posts: 527
Reputation: 37
|
IsPlayerToPoint ( Search it )
Then make a command which updates your skin stat... ( if you dont have a stat make one) |
|
|
|
|
#3 |
|
High-roller
![]() ![]() ![]() ![]() ![]() Join Date: Jul 2008
Location: 1000
Posts: 1,012
Reputation: 83
|
|
|
|
|
|
#4 |
|
Little Clucker
![]() Join Date: May 2010
Posts: 21
Reputation: 0
|
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;
}
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 ! |
|
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Changing skin on factions | L-v-rp.tk | Help Archive | 3 | 01/08/2010 07:20 AM |
| Skin saving | bartje01 | Help Archive | 3 | 03/02/2010 03:11 PM |
| Saving Skin | retart441 | Help Archive | 6 | 09/01/2010 09:34 PM |
| My skin keep changing without reason | addysnow1 | Help Archive | 0 | 20/12/2009 12:56 PM |
| Saving Skin | Hot | Help Archive | 2 | 27/05/2009 12:05 AM |