SA-MP Forums Archive
maping , money system , Powno , filescript - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: maping , money system , Powno , filescript (/showthread.php?tid=460401)



maping , money system , Powno , filescript - wolvaren1999 - 28.08.2013

Hello Every body

i need help want mapping program and link to convert it and how to use it and how to script money system , how to mix pawno with filescript ? i need this help because iam new one in samp script this help will make me maybe learn some thing Oke Thanks For Reading


Re: maping , money system , Powno , filescript - wolvaren1999 - 28.08.2013

and plz why when i put filescript name and start server.exe

after some time server.exe close any fix for it ?


Re: maping , money system , Powno , filescript - wolvaren1999 - 29.08.2013

why no one help me guys plz i need help


Re: maping , money system , Powno , filescript - Tom1412 - 29.08.2013

if u want some help add me on skype: aiwa1412


Re: maping , money system , Powno , filescript - wolvaren1999 - 30.08.2013

Any Other Help ?


Re: maping , money system , Powno , filescript - DanishHaq - 30.08.2013

Can you stop spamming? That just puts people off from helping you. What's powno and what's a filescript? Never heard of them before.. as much as I know it's pawno and it's a filterscript. Anyhow, read this to get your knowledge of pawn going: https://sampwiki.blast.hk/wiki/PAWN_for_Begginers. And then you can read this too: https://sampwiki.blast.hk/wiki/PAWN_tutorial_1.


Re: maping , money system , Powno , filescript - wolvaren1999 - 30.08.2013

am sorry to join this forum any admin can delete lock my topic i think i was idiot when i think that this forum helping new scripters any admin delete lock this topic


Re: maping , money system , Powno , filescript - SilentSoul - 30.08.2013

Map editor i support you to use mta map editor its the best sa-mp mapping program , Link :http://**************.******code.com...tasa-1.3.3.exe
Link of conv. : http://convertffs.com/
You want to make money system you mean give your self money ?
Type in your keyboard : Control + F Search for
Код:
public OnPlayerCommandText(playerid, cmdtext[])
After you press ok, it should look like this
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/mycommand", cmdtext, true, 10) == 0)
    {
        // Do something here
        return 1;
    }
    return 0;
}
Change it to
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/givememoney", cmdtext, true, 10) == 0)
    {
        GivePlayerMoney(playerid,"delete this and add the amount of money you want in number's");
        return 1;
    }
    return 0;
}
Some thing else ? Use https://www.******.com