
11-28-2001, 03:10 AM
|
|
RadioActive Monkeeh
|
 |
Join Date: Apr 2001
Location: dirty south
Posts: 2,112
|
|
|
what pixie said would only work on npc server, and only with databased npc's . playerleaves is p2p only.
if you want to disable the screen just use
disableselectweapons;
if you want to disable then use of weapons in a level do
timeout=.1;
if (playerenters&&!isweapon) { toweapons *swordonly; }
if (timeout&&isweapon) {
if (!strequals(#w,*swordonly)) { disableweapons; }
else { enableweapons; }
if (!strequals(#L,yourlevel.graal)) { destroy; }
}
if (!strequals(#L,yourlevel.graal)) { destroy; }
remember to plug in ur level to both places.
and Poogles , much like Delphi you dont need brackets when you have single line of command. |
|
|
|