Search Results
Danice for a good explanation give them a example i'll give you the example : pawn Код: forward MyTimer();new MyVariable[MAX_PLAYERS]; // let's create the functionpublic MyTimer(){    MyVariable...
110
Hmmmm , nice script that was my next idea to make but congratz!
809
But , that's problem is for all maps not only for this map. I DETECTED THE PROBLEM BUT IDK HOW TO SOLVE IT SO LOOK: IF I MAKE A MAP WITH CREATEOBJECT ALL IS GOOD IF I USE CREATEDYNAMICOBJECT appe...
85
So let me explain. All my maps are stored in a FS called streamermap. Okey i compile IT no problem . I have the last STREAMER Plugin updated. But the problem is here. The maps disapper and appear whe...
85
If you want to know which player is closet to 1000 score look here a code. pawn Код: public OnPlayerUpdate(playerid){    if(GetPlayerScore(playerid) >= 1000)    {          // YOUR COD...
89
Hmmm . Is very simple you need to go at OnPlayerEnterVehicle callback and add your code look at my example pawn Код: new    truckingcar;public OnGameModeInit(){     truckingcar = CreateVehi...
68
Hmmm, to save the color depends of you because only you knows what's in your script I hope this will help you! pawn Код: #define RGBCOLOR(%1,%2,%3,%4) (((((%1) & 0xff) << 24) | (((%2) ...
83
I think is from your YSI include , verify if you have the last updated version
100
@burnuk if the player had armour add SetPlayerArmour at the code example: pawn Код: if(issuerid != INVALID_PLAYER_ID && bodypart == 9)//which means head    {        SetPlayerArmour(p...
680
WE can make a /STATS command for you , without the Variables from Saving System!
87
No , will not destroy because GMX restart only the GameMode not all server.. But if you have an advanced MySQL or SQLite system saving connected players will be not saved on the db! But you can make ...
88
Try to hide the Loggin TD when TDFuel is called . pawn Код: if (newstate == PLAYER_STATE_DRIVER || newstate == PLAYER_STATE_PASSENGER)    {        new vid = GetPlayerVehicleID(playerid);  ...
115
If you want to check, if the Vehicle id is PublicSpawnVehicles you simply do pawn Код: if( vehicleid != PublicSpawnVehicles[x]) return Bla bla; // If you want anything please tell me! x - Your v...
102
Try pawn Код: for(new i; i < sizeof(GasStations); i++){        if(IsPlayerInRangeOfPoint(playerid, 10.0, GasStations[i][0], GasStations[i][1], GasStations[i][2]))        {// Your Code...
77
I don't understand what you want ? This is a stock , how to load this stock or ? If you want to use this function about the saving vehicles put at OnGameModeInit pawn Код: SaveVehicles(); Or if ...
188
Yes it possible you need to make a variable at first your GM pawn Код: new gPlayerUsedKill[ MAX_PLAYERS ];I don't know to use STRCMP i will show you in ZCMD ..CMD:kill( playerid, params[ ] )  Â...
127
The problem is here pawn Код: // You codeGetPlayerName( playerid, IGRAC1, sizeof( IGRAC1 ) );//Should be GetPlayerName( pID, IGRAC1, sizeof ( IGRAC ) ); I hope this will be works,
110
Quote: Originally Posted by DaniceMcHarley Loop through all players then check if he's an admin, if he is then display his name. Not just the name , Level and Name
180