Show Posts
|
Pages: [1] 2
|
1
|
Scripting / Script Releases / Re: VRockers Base Scripts
|
on: April 29, 2012, 03:25:44 pm
|
Level -1 means unregistered player, level 0 is registered player. When you are changing your level the server must be closed but make sure that you registered previously.
I registered yes, (/register password) and then go outgame, and stop the server, i go in the levels file, and then change 0 to 6 at my name, whats the problem there?
|
|
|
2
|
Scripting / Script Releases / Re: VRockers Base Scripts
|
on: April 28, 2012, 04:23:22 pm
|
Hey , if i set my level to level 6 in the levels.hsh It says im level -1 ? How to fix this? Also, i havent set autologin or anything, i think that happens with ip ?
|
|
|
3
|
Scripting / Script Releases / Re: Location Saver
|
on: December 03, 2011, 02:55:17 pm
|
Can you edit it , so it will save the car automatically in Content.xml , not the player or anything , only vehicle ? Thank you
|
|
|
10
|
Scripting / Script Help / Re: Image on connection to server
|
on: May 22, 2011, 02:23:43 pm
|
i did so ,, i think i uploaded the map here http://www.2shared.com/file/VRmLNkMP/Script.htmlit also says ingame with `button that its loaded so its the image it think i will try bmp once then img Edit1:hm thought i got it but not,, look at this: Look at reklama g_pLocalPlayer <- FindLocalPlayer();
function onScriptLoad() { print( ">> image script by xXxMDjxXx loaded\n" ); g_Reklama <- GUISprite( "a.gif", VectorScreen( ScreenWidth - 150, ScreenHeight - 500 ) ); g_Reklama.Visible = false; <----------------------------------------
AddGUILayer( g_Reklama );
return 1;
}
function onClientRequestClass( pClass ) { g_reklama.Visible = true;
return 1;
}
function onClientSpawn( pClass ) {
g_reklama.Visible = false; <-------------------------------
return 1;
} Edit2:One thing more i dont see a location? EDIT YOUR POSTS AND DON'T TRIPLE POST
|
|
|
12
|
Scripting / Script Help / Re: Image on connection to server
|
on: May 22, 2011, 12:20:03 pm
|
Yeah i see it there but the only thing i dont see is the picture i only changed gif to jpg and made the picture a jpg ?? both names in script and picture is a.jpg in script it is also a.jpg not a.JPG
|
|
|
13
|
Scripting / Script Help / Re: Image on connection to server
|
on: May 22, 2011, 11:41:16 am
|
i have that but if i change the 1 to a 0 i see it in server.exe and i know if i change it back to 1 it ownt be displayed because it is a client script,, but it says on script load message to a player that it is loaded but i dont see it
|
|
|
15
|
Scripting / Script Releases / Re: Force's Beginner Scripts - Release 1
|
on: May 19, 2011, 09:00:24 pm
|
If you want your server to be Guest Free! at onPlayerSpawn there is if ( ( Reg ) && ( !Logged ) ) AutoKick( player, "You Need to Login" ); make another line after that and add
if ( ( !Reg ) && ( !Logged ) ) AutoKick( player, "You Need to Register! and Login" ); now they need to register too
|
|
|
|