Search Results
I don't understand what the problem is :O Are they not removed from the vehicle? :O You can send me a PM in german language (Yes I understand German =D) to explain what exactly the problem is =D
65
Quote: Originally Posted by ikey07 I never have used PVar's , but I have question, Here pawn Код: public OnPlayerConnect(playerid){    SetPVarInt(playerid,"Tutorial",0);    return...
531
Two possibilities: 1: Replace: pawn Код: if(!UserExists(playerid)) by: pawn Код: if(UserExists(playerid)) And remove the >else< 2: Replace: pawn Код: if(!UserExists(playerid)) by: ...
90
Looks correct at first view :O You could check if the colors are correct, or maybe try to use others =D
126
pawn Код: public SetPlayerTeamFromClass(playerid, classid){       switch(classid)       {              case 0, 1, 2: gTeam[playerid] = TEAM_GROVE;              case 3, 4, 5: ...
126
Wrong Syntax: It's GetPlayerVirtualWorld(playerid); with 1 argument, which returns the virtual world of the playerid =D straco's solution is the right one =D
97
Remove [i] from AdminName[i] =D PS: Admins level 1 aren't shown because you haven't >= 1 but you probably know that =D Post over me was faster xD
90
pawn Код: SetPlayerColor(playerid, (COLOR_IN_CHAT & 0xFFFFFF00)); It's untested, but should work =D This code let him keep his color in the chat but makes him, as only person, invisible on the...
119
Can you show us the OnGameModeExit and your save code pls?
118
When I understand correctly: The problem is just when it's saved after a GMX?
118
And the position is saved correctly? :O
118
What kind of saving are you using? :O
118
Do you have Windows? And what Windows do you have?
133
Is it just with that script or also with others? :O
133
Quote: Originally Posted by Last_Stand_Guardian pawn Код: public RandMoney(){      new PCount, String[50], Name[MAX_PLAYER_NAME];      for(new i; i<GetMaxPlayers(); i++)    ...
245
If he uses random(MAX_PLAYERS), it's like he uses random(500), so it could be that playerid 455, which is probably not online, receives the money o.O. Top of the script: pawn Код: forward RandMone...
245
AddStaticVehicle can just be used during init phase and CreateVehicle can be used during init phase and during the gameplay =D
97
You're saying that they work sometimes. Is this sometimes, often or not? :O Because this text[1] is a little bit strange in the strings xD ^^ text[1] is just one letter I thought? :O
79
The error says that the tmp size is to small. Try: pawn Код: new tmp[256];
185
The problem is that PVars are by default 0 up to the moment when we set them to an another value. So when you use this command you're firstly trying to kill a timer who haven't started yet. Try: pawn...
95