Search Results
Hey, and thanks for reading this.. Myself and my friend have spent a while scripting up a roleplay script from scratch, it is completely dynamic.. we have finished it and everything, but we no longer...
54
Star wars! Play with velocity to make push and pull, etc..
176
You are setting a timer for each player correct? If so, just use one global timer for everyone?
144
the code that I scripted there, is pretty elementary if you have good logic skills, if he does not understand a thing that I wrote, he should be using the WIKI to understand functions, as that is what...
206
pawn Код: forward split(const strsrc[], strdest[][], delimiter);public split(const strsrc[], strdest[][], delimiter){    new i, li;    new aNum;    new len;    while(i <= strlen(strsrc)...
138
Quote: Originally Posted by gamer931215 too bad i lost the source Sure you did. If you can't supply anything else that works, please stfu.
206
Run 6, 10 minute timers, each time check if the player has lost connection or not. Or else Make one global timer for all paydays?
144
pawn Код: new Var[2]; // New Variable that checks the vehicle IDnew VarTaken[2]; // New Variable that checks what player is in the carpublic OnGameModeInit(){    VarTaken[0] = 552;    VarTaken...
206
Hope this gives you an idea Код: for(new i = 0; i < MAX_PLAYERS; i++) // Scans from 1-Max player slots { if(IsPlayerConnected(i)) // Checks for all connected IDs { if(GetPlayerVehicleID(i) == ...
159
What does your OnPlayerRequestClass say?
130
What line is the code on, also provide the code.
117
Oh wow, I didn't even notice that, Well spotted Voldemort.
155
Well then show us the code that adds the pickup.
155
Send through your whole OnGameModeInit ...
155
Set the virtual world it spawns in: CreatePickup(1247,14,-2407.8040,2291.2954,21.3180,-1); -1 is all More details here: https://sampwiki.blast.hk/wiki/CreatePickup
155
pawn Код: forward HealthTimer(playerid);new HeatlhTimer[MAX_PLAYERS]public HealthTimer(playerid);{SetPlayerHealth(playerid, 1000);KillTimer(HealthTimer[playerid]);TogglePlayerControllable(playerid...
59
Hi What I did to Lethotas RP was use SetPlayerPos to remove from vehicle, just like a few centimeters away from the car, that way they can't get... I can show you a sample if you would like as Remov...
143
By using check points you can calculate who is first in line and such.
178