I maked a server and now i need scripts...Can someone script
First i need scripts for teleports : /SFA /LSA /LVA then i need for /AFK /BAck and i have other 1 problem HOUSEs are not buyablle. + i want to add some businees and 1 more script /cars for cars menu ...Please Help me...
if(!strcmp(cmdtext,"/LVA",true))
{
SetPlayerPos(playerid, X, Y, Z);
return 1;
}
if(!strcmp(cmdtext,"/SFA",true))
{
SetPlayerPos(playerid, X, Y, Z);
return 1;
}
if(!strcmp(cmdtext,"/LSA",true))
{
SetPlayerPos(playerid, X, Y, Z);
return 1;
}
and I am sure that you will find some of them!
|
Yes and please help about houses and biz and script about /cars and /afk /back
Thank youu ! |
if(strcmp(cmdtext, "/afk", true) == 0)
{
TogglePlayerControllable(playerid,0);
new name[MAX_PLAYER_NAME], string[44];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "%s is now afk.",name);
SendClientMessageToAll(0xFFFF00AA, string);
return 1;
}
if(strcmp(cmdtext, "/back", true) == 0)
{
TogglePlayerControllable(playerid,1);
new name[MAX_PLAYER_NAME], string[44];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "%s is now back.",name);
SendClientMessageToAll(0xFFFF00AA, string);
return 1;
}
|
Chillzen i dont understand nothing but sniperwars will send me the scripts...
|
|
Chillzen i dont understand nothing but sniperwars will send me the scripts...
|