Script that admin can create events...
#1

Does someone knows a script which admins can create events with?
Please no DCMD,
Thanks,
Max
Reply
#2

please define "events", dm, races, stunts?
BTW: http://forum.sa-mp.com/index.php?action=search
Reply
#3

im looking for the same thing!!
Reply
#4

already searced...

I'm looking for, that they can create:
dm events
race events
ehm, lottery events
etc
Reply
#5

search it.
Reply
#6

Quote:
Originally Posted by Cry_Wolf
search it.
i did,
read my previous post...
Reply
#7

anyone?
Reply
#8

http://forum.sa-mp.com/index.php?topic=144062.0
Reply
#9

oh comon, noone's gonna reply on me there...
Reply
#10

its hard to tell but i think it should go like this

make veriable or what ever they are like

Код:
new bool:DmEventOn[MAX_PLAYERS];
make the command:

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
	if (strcmp(cmd, "/dmonl", true) == 0)
	{
     //here u should give if player is admin level = 1338,if its not there come error message ... in game ofc :D
    //and what code should do ofc here u post the fallowing veriable:
    DmEventOn = True;
    }
	return 1;
	}
	return 0;
}
and make another command for joining events ...

if (strcmp(cmd, "/joindm", true) == 0)
{
if(DmEventOn[playerid] == True)
{
//SetPlayerPos
//SetPlayerFacingAngle
// GivePlayerWeapons
//SetPlayerHealth
//SendClientMessage
// more and more
return 1;
}
if(DmEventOn[playerid] == false)
{
SendClientMessage(playerid,color,"The Dead Match Event Is Not Avaible ATM); // or something like this
return 1;
}
return 0 ;
}
it should be something like this this is example what i mean, codes are ofc not right, take this just for example i think if u know how to script this it should work
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)