Search Results
Jeez Louise! I'll get an moderator to take it down, and re-post it in the thread. Thanks for the heads up!
101
Manager found. Thanks for your interest anyway.
101
[v 1.0] Interior Searcher Introduction: Created this script in purpose of server creators who want to find interior coords quick and simple. This script includes all SAMP interiors I was able to fin...
624
Try something easy.. pawn Код: if(!boot) return SendClientMessage(playerid, COLOR_RED, "[ERROR:] The trunk is closed.");
72
Use a object streamer. This one is highly recommended: http://forum.sa-mp.com/showthread.ph...light=streamer
68
Write it into a variable upon login, and then just show the variable in a string? pawn Код: CMD:viptime(playerid, input[]){if(!IsPlayerAdmin(playerid)) return 0;new id;if(sscanf(input, "u", id)) ...
69
Save all the objects in arrays, then set a timer of 8 or 7 minutes. When the timer is done, use MoveObject() to sink the objects into the sea.
50
When you enter the game, the login or register dialog will pop up, yes. If that was your question.
184
My bad.. -.- Try to read the code yourself as well before inputting it. Im only human. pawn Код: CMD:group(playerid, params[]){    if(playerVariables[playerid][pStatus] != 1 || playerVariables[...
177
In your first post you said players could just press the "spawn" botton to spawn, without registering or login. The code I posted will fix that problem, and you dont need to use the /TogglePlayerSpect...
184
Alrighty... Try without the case then. pawn Код: CMD:group(playerid, params[]){    if(playerVariables[playerid][pStatus] != 1 || playerVariables[playerid][pGroup] < 1) return 1;    if(grou...
177
Try this: pawn Код: public OnPlayerRequestSpawn(playerid){    TogglePlayerSpectating(playerid, 1);    if(UserLogged[playerid] == 0)    {        format(Query, sizeof(Query), "SELECT * FR...
184
pawn Код: CMD:group(playerid, params[]) {    if(playerVariables[playerid][pStatus] != 1 || playerVariables[playerid][pGroup] < 1) return 1;    if(groupVariables[playerVariables[playerid][pG...
177
A good tip would be to do like this; pawn Код: new gLastCar[MAX_PLAYERS] = -1;if(strcmp(cmd, "/oldcar", true) == 0){    if(gLastCar[playerid] == -1) return SendClientMessage(playerid, COLOR_RED,...
197
First off, "case" always starts on 0. Not 1. Plus, I think you need to include the "SendToGroup(playerVariables[playerid][pGroup], COLOR_DCHAT, string);" behind the case line, and not at the bottom. N...
177
In what public do you store gLastCar[playerid] with the ID of the car? example: pawn Код: public OnPlayerStateChange(playerid, newstate, oldstate){    if(newstate == PLAYER_STATE_DRIVER) {gLas...
197
Only to the commands that allows them to teleport away from the DM area obviously.
146
Where do you get the information about your previous car? OnPlayerEnterVehicle?
197
Alright, try this.. Top of your script: new DeathMatch[MAX_PLAYERS]; then, when then enter the DM arena, like /startdm or whatever, you add DeathMatch[playerid] = 1; Then, if they try to teleport, you...
146
Do you have a TP command which you wish to block while in DM, and do you got a variable to check if they are inside a DM arena?
146