• Welcome to Vice City Multiplayer.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - ramandu

#1
General Discussion / Re: Who can help me?
March 26, 2010, 07:51:22 PM
add me [email protected] Xxxx

ps, i have webcam Xxxx
#2
Support / Re: [Help !!!!!!] Problem...
March 26, 2010, 07:45:46 PM
download AIDA32 or EVEREST ULTIMATE, both are hardware probers/diagnosntics and provide you with direct links to any driver downloads.
#3
ShowRoom (pawn) / Re: VC-MP STUNT Map v1.0 by HeToN
March 26, 2010, 07:41:29 PM
keep ya chin up son
#4
Support / Re: How to make server private
March 26, 2010, 06:07:13 PM
the more secure, the better, turn your old pc's into complete hardware gateways between you and the internet.

Internet - Router - Gateway - Managed Switch - Server_Machine
                                                |
                                            Switch  Switch Switch             
                                                |       |        |
                                              PCs    PCs    PCs
#5
mIRC/pawn Scripting / Re: [PAWN] Pickup function
March 26, 2010, 01:48:20 PM
a timer worked for me, sometimes forcing these things works
#6
thanks
my main script is in pawn now, because i can do so much more, but this is good to keep in reserve.

will it be gone soon and we will only have pawn?
#7
thanks
yes, i think i saw it on that miami server last week
#8
mIRC/pawn Scripting / mirc server not on main site
March 23, 2010, 06:30:29 PM
hi i cant find where to download the mirc server.

is is pointless to use it now?
#9
i converted this to pawn. thanks.

whats Urban Paradise City ?
#10
mIRC/pawn Scripting / pawno compiler question
March 03, 2010, 05:42:04 PM
is there anyway to suppress the warnings for unused variables in the compiler ?

warning 203: symbol is never used: "Player"

i would also like to keep the variable there for potential future use.

thankyou
#11
mIRC/pawn Scripting / switch case help
March 03, 2010, 03:27:33 PM
hi, it seems the topic was locked for no apparent reason.

you asked me a question.

Why do you use Primary_Group
its simply just name i gave it to represent the value of the function.

It will switch only the first letter.
ok thankyou for this information, how do i make it switch the complete word ?
#12
mIRC/pawn Scripting / Re: switch case help
March 03, 2010, 03:13:24 PM
hi, it points directly to this line


case "USER", "ADMIN", "HALF-ADMIN", "MODERATOR":


i am calling it like this,


if ( IsPlayerGroup_Mod("ramandu", "MODERATOR") ) { printf("yes, ramandu's group MODERATOR is found and also has access to user, admin, half-admin commands"); }
#13
mIRC/pawn Scripting / Re: switch case help
March 03, 2010, 02:43:34 PM
thankyou boss, it suppressed allot of the errors and leaves just this one;



error 008: must be a constant expression; assumed zero
#14
mIRC/pawn Scripting / switch case help
March 03, 2010, 01:43:28 PM
i'm trying to make a command group hierarchy.

if the players primary group is any of the four in the "case" statement, he has access to all of that groups commands.

but as soon as i increase any of the "case" values above two characters, it throws many compile errors.



stock
IsPlayerGroup_Mod(Player[], Primary_Group[])
{

switch (Primary_Group[0])
{


// case 'a', 'b', 'c', 'd' : // ->  works
// case '1', '2', '3', '4': // -> This works too

case 'USER', 'ADMIN', 'HALF-ADMIN', 'MODERATOR': // -> but this dosnt work, why ?
{
return 1;

}
}
return 0;
}


calling syntax: IsPlayerGroup_Mod("Ramandu", "ADMIN");

how do i solve it ?

thankyou very much
#15
mIRC/pawn Scripting / Re: compile error help
March 02, 2010, 12:43:37 PM
Thankyou, i have a couple more questions.

why 256 when declaring strings? 256 represents bytes, yes ? how many chars will fit in 256 bytes? should i make it as low as possible ?

can i access a given string delimiter by using a [1] format.

New
   Index,
   MyString = "this is my string";

   strtok(MyString, Index);

   MyString[0] // does this return the total segments ?
   MyString[1] // does this return the first segmant ?
   MyString[2] // does this return the second segment ?

if not, how do i accomplish it.

thankyou very much.