[Help!!!] How to usethis Public!!
#1

Hi.

How can I use this native in my xObjects script!?

Код:
public IsValidObjectModel( modelid )
{
    switch( modelid )
    {
    }
}
:S ?
Reply
#2

You would need every good object, or bad object, in a list to search from. So you can go in game with some kind of script and create/destroy every object and copy the ones that make you crash.
Reply
#3

I have the list obviously in

switch (modelid)
{
list...
}

I mean how can I use it with xObjects (I have the list!)
Reply
#4

Let's say for example, objects 100 , 150, 175 - 180, and 502 were bad. You might do something like this.

pawn Код:
switch(modelid)
{
   case 100,150,502,175..180:
   {
     //It's bad
   }
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)