Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - NIPNIC

Pages: [1]
1
mIRC/pawn Scripting / Re: Player Drop
« on: May 16, 2011, 05:39:39 am »
onPickedUp(plr , id)
{
resetplayerweapons(plr)
SetplayerWep m4 spaz
}


xDDD ???

Wth, Totally wrong.  ???

2
mIRC/pawn Scripting / system of payday.
« on: April 13, 2011, 11:08:52 am »
very simple.

on top of your gamemode put.

Code: [Select]
forward Payday();
now in OnGameModeInit() Put.

Code: [Select]
SetTimer("Payday",600000,1); // 600000 = 10 Minutes !
Now you need to create a public.

Code: [Select]
public Payday()
{
for(new i=0; i<=MAX_PLAYERS;i++)GivePlayerMoney(i, 1000);
SendClientMessageToAll(COLOR_GREEN,"PayDay: 1000$ :D");
}

if you want to know exactly how many seconds, minutes, hours or even months you can download the SetTimer Converter: http://www.4shared.com/file/AppbWJ30/Converter.html

 :D


Pages: [1]