Author Topic: A idea for 0.4 :p  (Read 3015 times)

0 Members and 1 Guest are viewing this topic.

Offline Tomiijaja

  • Street Thug
  • *
  • Posts: 24
    • View Profile
A idea for 0.4 :p
« on: May 12, 2013, 10:31:29 pm »
i have a idea to the 0.4.

fix "GivePlayerMoney" in pawn, the bug is, when a player use that function, doesnt INCREASE the cash, only GIVE, right? is like a SetPlayerCash...

Sorry my bad english :p
« Last Edit: May 12, 2013, 10:37:23 pm by Tomiijaja »

Offline stormeus

  • VC:MP Developer
  • VC:MP Veteran
  • *
  • Posts: 1122
    • View Profile
Re: A idea for 0.4 :p
« Reply #1 on: May 12, 2013, 10:40:16 pm »
I think this was already done.
Do not PM me for support.




Offline Tomiijaja

  • Street Thug
  • *
  • Posts: 24
    • View Profile
Re: A idea for 0.4 :p
« Reply #2 on: May 12, 2013, 10:41:31 pm »
I think this was already done.
Oh!, Nice!, i love you VC:MP developers :*

Offline sseebbyy

  • VC:MP Veteran
  • *****
  • Posts: 774
  • Immortal VC:MP Player
    • View Profile
    • Zombie Invasion => Server Forum [DEAD PROJECT]
Re: A idea for 0.4 :p
« Reply #3 on: May 12, 2013, 11:01:36 pm »
But you can use another method to increase/decrease the cash of a player until the 0.4 stable version is released:

Code: [Select]
new money = GetPlayerMoney(playerid);
SetPlayerMoney(playerid, money +amount); // With this, you can increase the player's cash. Use " - " if you want to decrease.

Quote
Painful/Noob scripters acts like: I Am The Best Scripter Because I Announce My Releases With Big Font Size Without Giving Too Much Info' In The Hope They All Will Download And Check It. I Ignore Bad Replies, Replies That I Could Learn From, And Replies With So Much Text.



Offline Tomiijaja

  • Street Thug
  • *
  • Posts: 24
    • View Profile
Re: A idea for 0.4 :p
« Reply #4 on: May 12, 2013, 11:07:23 pm »
But you can use another method to increase/decrease the cash of a player until the 0.4 stable version is released:

Code: [Select]
new money = GetPlayerMoney(playerid);
SetPlayerMoney(playerid, money +amount); // With this, you can increase the player's cash. Use " - " if you want to decrease.
For the new persons in pawn, is more easy use GivePlayerMoney but fixed.