[HELP] Team Deathmatch GM
#1

Hello Everyone ,

Im making my own Team Deathmatch Game mode. Im a newbie in Scripting Game Mode's. I was taking help from this tutorial - https://sampforum.blast.hk/showthread.php?tid=273529 - It made a Small , Basic GM For me. A good one i guess.

This is a short tutorial. It spawn's somewhere in the Las Venturas near Four Dragons club. Is that the default spawn if you dont set it to anything? Could you please tell me how can i set spawn for each team easily? How can i give them different guns? Different guns to each Team also??

How to make Team Limiter's - To Limit the entrance in the team by the players if it is full.??

I have more questions you know! Is there any big tutorial to understand how to make more stuff for my GM?

I hope you understand what i want to say.

Thanks
Ballu Miaa
Reply
#2

Just change it. Besides the team change skinID, Float: X, Float: Y, Float: Z, Float: A, Weapon 0, Ammo 0, Weapon 1, Ammo 1, Weapon 2, Ammo 2
pawn Код:
public OnGameModeInit( )
{
    AddPlayerClass( 102, 1958.3783, 1343.1572, 15.3746, 269.1425, 5, 0, 22, 100, 32, 50 ); // Ballas
    // The class above is classid 0.

    AddPlayerClass( 0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0 ); // CJ
    // Multiply the classid + 1, so this class is classid 1.

    AddPlayerClass( 1, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0 ); // The truth
    // Multiply the classid + 1 again, so this is classid 2.

    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)