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 - NeskWriter

Pages: 1 ... 22 23 [24]
346
ShowRoom (pawn) / Re: Fishing System v1 [By Me]
« on: August 25, 2012, 09:19:27 pm »
Your scripts are great ever! One thing,
Quote
SendClientMessage(playerid,COLOR_GREEN,"You don't have a fishing rod! Go to magazine to buy!");
Magazine and shop are two different things!
Shop is a place where you can buy all you need
Magazine is
In ukrainian and russian languages shop also called magazin.
Good luck in pawn and english!  :P

347
Snippet Showroom / Re: Christmas Theme By Moby (me) [ + Video ]
« on: August 25, 2012, 06:11:52 pm »
Great work! It's original!!!  :D

348
thanks! :D

349
mIRC/pawn Scripting / How to create your own includes? Or how to anim?
« on: August 25, 2012, 11:51:35 am »
I have seen on server how dude used command and he sat. How to script it in pawn? Or, how to create your own includes?

350
General Discussion / Re: I get an idea
« on: August 25, 2012, 09:29:19 am »
Kitt, not ServTeam. i said, "SUrvTeam"-a team of survived people. Survived are surviving by alone, SurvTeam-by team.

351
General Discussion / I get an idea
« on: August 24, 2012, 10:44:34 am »
I get an idea for server.
It's APOCALYPSE ROLE PLAY SERVER
there are 5 playing classes:
1. Survived
2. Infected
3. SurvTeam
4. Punks(natives)
5. Army

I will tell more later. so how it?

352
Snippet Showroom / Re: Napalm making system
« on: August 24, 2012, 09:25:09 am »
Maaan

353
Snippet Showroom / Re: Napalm making system
« on: August 23, 2012, 05:46:47 pm »
you can change it and end it, here is a map: http://imageshost.ru/photo/196567/id2293136.html

354
Snippet Showroom / Re: Napalm making system
« on: August 23, 2012, 05:20:38 pm »
Now, using /c makenapalm you will create napalm from materials you get.
I will put here map with materials. Wait for this.
Sorry for my bad english :'(

355
Snippet Showroom / Napalm making system
« on: August 23, 2012, 05:18:38 pm »
It was nothing to do
I get an idea and I've created napalm making system using 3 items
It's my first thing i made in PAWNO, i made it though scores adding. Comments pls.
So:
put in public OnGameModeInit()
[pawn]   
    AddStaticPickup(1, 578, 37.50, -1056.25, 10.25);
    AddStaticPickup(2, 597, 191.25, -1013.75, 11.375);
    AddStaticPickup(3, 409, 11.25, -950, 10);[/pawn]
put in public OnPlayerCommandText(playerid, cmdtext[])
[pawn]
{
    if (strcmp(cmdtext, "makenapalm", true)==0 && GetPlayerScore(playerid)==3)
    {
        SendClientMessage(playerid, 0xFF0000AA, "You made napalm from materials you got");
        SetPlayerWeapon(playerid, 15, 1);
        SetPlayerScore(playerid, -3);
        return 1;
    }
    else if (strcmp(cmdtext, "makenapalm", true)==0 && GetPlayerScore(playerid)<=3)
    {
        SendClientMessage(playerid, 0xFF0000AA, "You do not have one more materials");
        return 1;
    }
return 0;
}[/pawn]

and in public OnPickedUp(pickupid, playerid)
[pawn]
{
    if(pickupid==1)
    {
        GameTextForPlayer(playerid, "~w~You got a can of gas");
        SetPlayerScore(playerid, GetPlayerScore(playerid) + 1);
    }
    if(pickupid==2)
    {
        GameTextForPlayer(playerid, "~w~You got a wine bottle");
        SetPlayerScore(playerid, GetPlayerScore(playerid) + 1);
    }
    if(pickupid==3)
    {
        GameTextForPlayer(playerid, "~w~You got a fuse");
        SetPlayerScore(playerid, GetPlayerScore(playerid) + 1);
    }
    return 1;
}
[/pawn]

Pages: 1 ... 22 23 [24]