Posts: 75
Threads: 33
Joined: Oct 2009
Reputation:
0
I can't do it, i tried but i can't find helping informations!
Posts: 75
Threads: 33
Joined: Oct 2009
Reputation:
0
I tried everything but i still get errors and warnings!
Posts: 663
Threads: 42
Joined: May 2009
Reputation:
0
Post your errors and relevant code here, if you would like further help.
Posts: 75
Threads: 33
Joined: Oct 2009
Reputation:
0
public OnGameModeInit()
{
new pickup;
pickup = CreatePickup(359,2,19955.5645,-1615.6426,33.4479,-1);
return 1;
}
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(359 == (pickup)) GivePlayerWeapon(35,10);
}
and then it goes
C:\Users\Angelo\Desktop\Grand Theft Auto -San Andreas\gamemodes\CountryStuff.pwn(383) : warning 204: symbol is assigned a value that is never used: "pickup"
C:\Users\Angelo\Desktop\Grand Theft Auto -San Andreas\gamemodes\CountryStuff.pwn(521) : error 017: undefined symbol "pickup"
C:\Users\Angelo\Desktop\Grand Theft Auto -San Andreas\gamemodes\CountryStuff.pwn(521) : warning 202: number of arguments does not match definition
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Posts: 391
Threads: 46
Joined: Mar 2008
Reputation:
0
This is wrong. Variable "mypickup" should be defined outside OnGameModeInit, so you are able to use it in OnPlayerPickUpPickup as well.