Creating a weapon pickup?
#1

I can't do it, i tried but i can't find helping informations!
Reply
#2

Have a good read here:

https://sampwiki.blast.hk/wiki/CreatePickup
Reply
#3

I tried everything but i still get errors and warnings!
Reply
#4

Post your errors and relevant code here, if you would like further help.
Reply
#5

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.
Reply
#6

pawn Code:
public OnGameModeInit()
{
    new mypickup;
    mypickup = CreatePickup(359,2,19955.5645,-1615.6426,33.4479,-1);
    return 1;
}
pawn Code:
public OnPlayerPickUpPickup(playerid, pickupid)
{
  if(pickupid == mypickup) GivePlayerMoney(playerid,10000);
}
Reply
#7

This is wrong. Variable "mypickup" should be defined outside OnGameModeInit, so you are able to use it in OnPlayerPickUpPickup as well.
Reply
#8

pawn Code:
new pickup;

public OnGameModeInit()
{
   
    pickup = CreatePickup(359,2,19955.5645,-1615.6426,33.4479,-1);
    return 1;
}

public OnPlayerPickUpPickup(playerid, pickupid)
{
  if(pickupid == pickup)
  {
  GivePlayerWeapon(35,10);
  }
}
Reply
#9

Quote:
Originally Posted by Infamous
View Post
This is what I was looking for, thanks.
Reply
#10

Quote:
Originally Posted by member
View Post
pawn Code:
public OnGameModeInit()
{
    new mypickup;
    mypickup = CreatePickup(359,2,19955.5645,-1615.6426,33.4479,-1);
    return 1;
}
pawn Code:
public OnPlayerPickUpPickup(playerid, pickupid)
{
  if(pickupid == mypickup) GivePlayerMoney(playerid,10000);
}
Thanks for the script advice
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)