[HELP] Clothes Store
#1

I'm using Carlito's Roleplay and I was wondering if it's possible to make a clothes command like in LA-RP. Right now it uses this cheap /buyclothes [skinid] system, I would like it to be visual.

This is the code of the /buyclothes [skinid] skin:

Код:
  }
	if(strcmp(cmd, "/buyclothes", true) == 0)
	{
	  if(IsPlayerConnected(playerid))
	  {
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_HOWTO1, "[How-To] /buyclothes [skinid]");
				return 1;
			}
			new id = strval(tmp);
		  for(new i = 0; i < sizeof(Businesses); i++)
			{
				if (PlayerToPoint(25.0, playerid,Businesses[i][ExitX], Businesses[i][ExitY], Businesses[i][ExitZ]))
				{
					if(GetPlayerVirtualWorld(playerid) == i)
		 			{
					  if(Businesses[i][BizType] == 6)
					  {
					    if(Businesses[i][Products] != 0)
					    {
					      if(GetPlayerCash(playerid) >= 100)
					      {
					        if(IsACopSkin(id) == 0)
									{
										if(IsValidSkin(id))
										{
											SetPlayerSkin(playerid,id);
											GivePlayerCash(playerid,-100);
											Businesses[i][Products]--;
											Businesses[i][Till]+=100;
											SendClientMessage(playerid, COLOR_GREEN, "Clothes purchased, $-100.");
											SaveBusinesses();
											return 1;
										}
			    				}
								}
	    				}
	  				}
	 				}
				}
	 		}
		}
		return 1;
Please help me!
Reply
#2

make a menu, i did it for mine on same gm
Reply
#3

How?
Reply
#4

https://sampwiki.blast.hk/wiki/Creating_a_simple_Menu i did that
Reply
#5

That doesnt make it visual either, just a menu with the ID's in it...
Reply
#6

well you can just describe the skin in menu option, if u want the skin to be seen. Take the code from LARP itself.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)