10.09.2011, 20:34
ok do you have a server ill come in it and we can make the saves together
TimestampToDate
it would convert mktime value to date(e.g: 2011-09-02 12:12:12) I have one function, but its outdated I think, created in 2009 mktime function: pawn Код:
|
A nice vehicle system. Commands /v (help command) /v buy [modelid] [color 1] [color 2] (the buy command and when no modelid,color it shows the list.(the vehicles that he can buy)) /v buypark (a park place you need to buy, now everything saves, car color, paintjob etc., with the spawned vehicle) /v park (parks the car, destroyvehicle, need to be on his parking place, when he isnt there a redmarker sets on it.) /v get [carid] (the vehicle spawns on his parking place) /v find (a red marker on the spawned car) /v plate [plate] (change the plate of the spawned car) /v lock (locks/unlocks when you are at the car.) /v list (shows all your vehicles: carid - name - sellprice) /v sell ( sells the spawned car for the price/2 ore something) /v sellto [id/name] [price] (sells a car to a player /accept vehicle to accept.) Details; Unlimited vehicles (A player can own unlimited vehicles) Carid is starts by 0 (its not the spawn id of the vehicle just the how much cars you have in a count.) Max 1 car spawned Saves every thing (Paintjob etc.). Mysql |
One function GetSecondsTimer(timer); That gives how much seconds the timer need to finish. example a player type /timer, then starts a timer of 10 seconds, and after the 10 seconds, it sends a message to the player like ''Timer finished' When the player type /time the player see how much seconds he need to wait before the player get the message. (Timer finished) |
How do you expect people to know what you are talking about?
And how do you expect someone to write a command to implement into your script, without giving them any information on variables and symbols you use in your script. And what is the command supposed to do? |
I want a quiz when one joins the server, you get to answer questions as they answer wrong you get kickad.typ which is what Meta Gaming Means. someone who has it who can provide it?
plz help me ? |
hey guys any one can delete the registration system from my gamemode? i have lux admin and i dont need gamemodes registration system tell me to send you the script to remove it
|
public OGTTE_GameTextForPlayer(playerid, const string[], time, style)
{
SetTimerEx("OnGameTextTimeEndsForPlayer", time, 0, "i", playerid);
return GameTextForPlayer(playerid, string, time, style);
}
public OGTTE_GameTextForAll(const string[], time, style)
{
SetTimer("OnGameTextTimeEnds", time, 0);
return GameTextForPlayer(string, time, style);
}
#if defined _ALS_GameTextForPlayer
#undef GameTextForPlayer
#else
#define _ALS_GameTextForPlayer
#endif
#if defined _ALS_GameTextForAll
#undef GameTextForAll
#else
#define _ALS_GameTextForAll
#endif
forward OGTTE_GameTextForPlayer(playerid, const string[], time, style);
forward OGTTE_GameTextForAll(const string[], time, style);
forward OnGameTextTimeEndsForPlayer(playerid);
forward OnGameTextTimeEnds();
public OnGameTextTimeEndsForPlayer(playerid)
{
// gets called if a GameTextForPlayer timeouts
return 1;
}
public OnGameTextTimeEnds()
{
// gets called if a GameTextForAll timeouts
return 1;
}