13.04.2009, 16:24
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:
Please help me!
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;