Should I put this in my server? -
jameskmonger - 20.03.2010
I'm making a roleplay server, and I am wondering, should I use ammunations (prices will be edited to make weapons hard to get), weapons dealers (players), or both?
Re: Should I put this in my server? - Jansish - 20.03.2010
no you shouldnt
Re: Should I put this in my server? -
iLinx - 20.03.2010
How do you plan on editing the prices in ammunation? I thought that was impossible :O
Re: Should I put this in my server? -
ineoncore - 20.03.2010
Quote:
Originally Posted by iLinx
How do you plan on editing the prices in ammunation? I thought that was impossible :O
|
it possible but you need to make own script
giveplayermoney (-100) something like that
giveplayerweapon
Re: Should I put this in my server? -
jameskmonger - 20.03.2010
They would be custom ammunations, just with the same interior.
Re: Should I put this in my server? -
MaykoX - 20.03.2010
No, don't use ammunations because than all newbs can go there and buy guns and DM :P
Re: Should I put this in my server? -
jameskmonger - 20.03.2010
I'd probably add level requirements, and they'd be very expensive. I might even add "admin verification", where an admin has to type /ammuverify PLAYERID, and then they can enter ammunations.
Re: Should I put this in my server? -
ineoncore - 20.03.2010
Quote:
Originally Posted by † мąүқоҳ™
No, don't use ammunations because than all newbs can go there and buy guns and DM :P
|
souliation:
public Ifplayerisnoob(playerid)
{
sendclientmsg ("bye bye noob!")
Ban(playerid);
return 1;
}
Re: Should I put this in my server? -
Fedee! - 20.03.2010
Quote:
Originally Posted by ineoncore
Quote:
Originally Posted by † мąүқоҳ™
No, don't use ammunations because than all newbs can go there and buy guns and DM :P
|
souliation:
public Ifplayerisnoob(playerid)
{
sendclientmsg ("bye bye noob!")
Ban(playerid);
return 1;
}
|
You forgot something..
pawn Код:
public PlayerIsNoob(playerid)
{
new score;
score = GetPlayerScore(playerid);
if(score == -12121) SendClientMessage(playerid, COLOR_NOOB, "You are too Noob to enter here! Bye bye Noob!"); Ban(playerid);
return 1;
}
XDD
Re: Should I put this in my server? -
jameskmonger - 20.03.2010
I don't mind you guys joking about, but can you answer the question as well?