Fearless Forums
Donator !?!??! - Printable Version

+- Fearless Forums (https://fearlessrp.net)
+-- Forum: Community & Server Information (https://fearlessrp.net/forumdisplay.php?fid=1)
+--- Forum: Help & Support (https://fearlessrp.net/forumdisplay.php?fid=3)
+---- Forum: Support Archive (https://fearlessrp.net/forumdisplay.php?fid=158)
+---- Thread: Donator !?!??! (/showthread.php?tid=68381)



Donator !?!??! - Schnitzelburger - 01-29-2016

I did buy 2 moneypacks for 5$ but suddendly i got donator can somebudy fix that please


RE: Donator !?!??! - Gog - 01-29-2016

You might of pressed the wrong donator pack. Contact Soulripper and he will give them to you.


RE: Donator !?!??! - Schnitzelburger - 01-29-2016

i dint i did press moneypacks


RE: Donator !?!??! - SoulRipper - 01-29-2016

Solved, sorry for the inconvenience. The donate page was broken for two days without me knowing it. I've fixed it now and should work like a charm!

Thanks for donating!


RE: Donator !?!??! - Misterbobbie - 01-29-2016

(01-29-2016, 01:53 PM)SoulRipper Wrote: Solved, sorry for the inconvenience. The donate page was broken for two days without me knowing it. I've fixed it now and should work like a charm!

Thanks for donating!

Why dont you just get an ingame donation system and code a function in that does like ply:GiveDonator(..Name().., 30).

And if you do it like for the items: cityrp.inventory.update(itemname, 5)

And for the money: ply:GiveMoney(100000)


RE: Donator !?!??! - Gog - 01-29-2016

(01-29-2016, 07:32 PM)Misterbobbie Wrote:
(01-29-2016, 01:53 PM)SoulRipper Wrote: Solved, sorry for the inconvenience. The donate page was broken for two days without me knowing it. I've fixed it now and should work like a charm!

Thanks for donating!

Why dont you just get an ingame donation system and code a function in that does like ply:GiveDonator(..Name().., 30).

And if you do it like for the items: cityrp.inventory.update(itemname, 5)

And for the money: ply:GiveMoney(100000)

That wouldn't really work with lua code.


RE: Donator !?!??! - Misterbobbie - 01-29-2016

(01-29-2016, 08:02 PM)Gogson8 Wrote:
(01-29-2016, 07:32 PM)Misterbobbie Wrote:
(01-29-2016, 01:53 PM)SoulRipper Wrote: Solved, sorry for the inconvenience. The donate page was broken for two days without me knowing it. I've fixed it now and should work like a charm!

Thanks for donating!

Why dont you just get an ingame donation system and code a function in that does like ply:GiveDonator(..Name().., 30).

And if you do it like for the items: cityrp.inventory.update(itemname, 5)

And for the money: ply:GiveMoney(100000)

That wouldn't really work with lua code.

That is why i got it to work with cider.....


RE: Donator !?!??! - Zyphix - 01-30-2016

(01-29-2016, 08:29 PM)Misterbobbie Wrote:
(01-29-2016, 08:02 PM)Gogson8 Wrote:
(01-29-2016, 07:32 PM)Misterbobbie Wrote:
(01-29-2016, 01:53 PM)SoulRipper Wrote: Solved, sorry for the inconvenience. The donate page was broken for two days without me knowing it. I've fixed it now and should work like a charm!

Thanks for donating!

Why dont you just get an ingame donation system and code a function in that does like ply:GiveDonator(..Name().., 30).

And if you do it like for the items: cityrp.inventory.update(itemname, 5)

And for the money: ply:GiveMoney(100000)

That wouldn't really work with lua code.

That is why i got it to work with cider.....

I can't believe that people still use cider, but to each their own.

I would switch cider.inventory.update into a meta function if I were you, ex:
function meta:GiveItem(id,amount or 1)
--do stuff here
end

Ofc it is possible to do it in-game, also.