Search Results
I use this.
Код:
forward ShowStats(playerid,targetid);
Код:
public ShowStats(playerid,targetid)
{
new admin = pInfo[targetid][pAdmin];
new vipp = pInfo[targetid][pVip];
new fvip[32];
if(f...
215
Quote:
Originally Posted by Calisthenics
Because HouseInfo goes out of bounds. Replace with MAX_HOUSES+1 with sizeof (HouseInfo) in the loop.
When a player is in range of a house, set thei...
108
I have made a house system.Everything forks fine exept 1 command.
Код:
CMD:enterhouse(playerid,params[])
{
for(new h=0;h<MAX_HOUSES+1;h++)
{
if(IsPlayerInRangeOfPoint(playerid,1.0,House...
108
try this:
Код:
new Vehicle[MAX_PLAYERS];
COMMAND:kerr(playerid, params[]){
new car;
new string[128];
new first;
new second;
new Float:X, Float:Y, Float:Z;
GetPlayerPos(player...
101
Quote:
Originally Posted by vikoo
explain ur problem and and puts ur codes here
I fixed it
211
Can someone help me to fix tihs?
It is explained under TurfInfo in the code
211
https://sampwiki.blast.hk/wiki/OnDialogResponse
416
Try this
Код:
new status[MAX_PLAYERS];
stock UpdateStatus(playerid)
{
switch(PlayerInfo[playerid][Level])
{
case 0: status[playerid] = "Player";
case 1: status[playerid] = "Junior Administar...
300
Quote:
Originally Posted by SonnyGamer
Are you sure that it is made by you?
Did you test it 100%?
Yes i tested it
1,036
Quote:
Originally Posted by cSharp
No thanks.
Upload it to https://pastebin.com/ or in CODE elements.
Ready
1,036
Simple AKA
This filterscript was made by [BG][NCS]Abaddon
Credits:
Code:
Y_Less - sscanf
Zeex - zcmd
DracoBlue - dini2
Commands:
Code:
/aka - check player's aka
DownloadPastebin
1,036
you can use https://www.000webhost.com to host free website and upload mp3 files to the website and than play them from the site
173
You can use unix timestamp
example:
PlayerInfo[id][pVipTime] = (gettime() + 60 * 60 * 24 * 30);
and you can use OnPlayerUpdate to remove playe's vip when PlayerInfo[id][pVipTime] >= gettime();
383
This is my command
Код:
CMD:admins(playerid,params[])
{
for(new i=0;i<MAX_PLAYERS;i++)
{
new string[1000],astring[50],count,admin[80];
if(PlayerInfo[i][pAdmin] >= 1 && Pl...
173
Hello guys i have problem with this command
Код:
if(strcmp(cmd,"/createbiz",true)==0)
{
new type,price,payout;
new Float:pX,Float:pY,Float:pZ;
if(sscanf(params,"iii",type,price,pa...
139