Payday help
#1

hello, can someone make me a script like every hour give pleader 1 2000$ how i make it i use larp script it give random paycheck and i don't know how to change it i realy need help...
Reply
#2

Can you give us your paycheck code, so i or we can edit it?
Reply
#3

I can answer this very quickly, no.

There are a ton of payday scripts on these forum, search around, look at them, and learn from them :P.
Reply
#4

Quote:
Originally Posted by Kyosaur
Посмотреть сообщение
I can answer this very quickly, no.

There are a ton of payday scripts on these forum, search around, look at them, and learn from them :P.
i have search them put i have Payday system in script i use larp script
Reply
#5

Quote:
Originally Posted by heroyou1221
Посмотреть сообщение
i have search them put i have Payday system in script i use larp script
Remove it then add one that works for you? You can pastebin the script, and someone might help you remove it (people are sometimes nice). But for the "can you make me.." thing, its probably always going to be a no (there is a scripting request thread for a reason , i suggest you either check that out, or search a bit).
Reply
#6

Hm, suppose if you like send me a forum pm with the code i'll work something out.
Reply
#7

use timers

Код:
forward payday();

Under gamemodeinit

SetTimer("payday",timehere,true);

public payday()
{
  for(new i = 0; i < MAX_PLAYERS; i++)
  { 
   SafeGivePlayerMoney(i, amount);
  }
}
Reply
#8

Quote:
Originally Posted by R@ger
Посмотреть сообщение
use timers

Код:
forward payday();

Under gamemodeinit

SetTimer("payday",timehere,true);

public payday()
{
  for(new i = 0; i < MAX_PLAYERS; i++)
  { 
   SafeGivePlayerMoney(i, amount);
  }
}
thanks but can you make pleader 1 get 2000 and pleader 2 1000 and make example and i can make more pleader 3.
Reply
#9

player not pleader
Reply
#10

pawn Код:
public payday()
{
  for(new i = 0; i < MAX_PLAYERS; i++)
  {
   if(i == 1)
   {
      SafeGivePlayerMoney(i, amount);
   }
   else if(i == 2)
   {
      SafeGivePlayerMoney(i, amount);
   }
  }
}
Might not work, just thought I'd try it ^.^
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)