• Welcome to Vice City Multiplayer.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - DeWilX

#1
mIRC/pawn Scripting / Re: !givecash fails
April 25, 2011, 09:50:05 AM
This is my problem too.  >:(
#2
mIRC/pawn Scripting / Re: How!!!
April 25, 2011, 09:47:20 AM
put this line in your config..
password pass_change_me
:)
#3
ShowRoom (pawn) / Re: GUPS 1.16a
April 24, 2011, 04:43:15 PM
doesn't work :(
#4
ShowRoom (pawn) / Re: GUPS 1.16a
April 24, 2011, 02:30:03 PM
else if (strcmp(cmd, "!getcar", true) == 0) {
  tmp = strtok(cmdtext, idx);
if(PlayerInfo[playerid][Logged] != 1) SendClientMessage(playerid, COLOR_RED, "You need to login first!");
else if(!strlen(tmp)) SendClientMessage(playerid,COLOR_GREEN, "USAGE: !getcar [VehicleID]");
else if(IsVehicleOwnedShared(strval(tmp),gPlayers[playerid]) == -1) SendClientMessage(playerid,COLOR_GREEN, "You do not have the keys for that vehicle.");
else {
new Float:Angle;
GetPlayerPos(playerid, x, y, z); GetPlayerFacingAngle(playerid,Angle);
if(!Angle) SendClientMessage(playerid,COLOR_GREEN,"Error: Invalid vehicle!");

SetVehiclePos(strval(tmp),x+3,y+3,z,Angle);
format(szMsg,sizeof(szMsg),"Spawning vehicle:[ %d ]",strval(tmp));
SendClientMessage(playerid,COLOR_GREEN,szMsg);
}
return 1;
}


This command spawns only one time vehicle, when I want again vehicle I type "!getcar x" nothink no car only show "Spawning vehicle: x".

And I have question how to make time go?

Sorry, for bad English.
#5
ShowRoom (pawn) / Re: Flip Command PAWNO!!!
April 23, 2011, 10:40:59 AM
Lol this command fails, when I type "!flip" nothing, but when I type "/c !flip" works..   >:(