-
Posts
210 -
Joined
-
Last visited
Everything posted by Fabio(GNR)
-
Ok, thanks 50p i ment the cylinder, arrow etc. It works thanks to you guys and the wiki , thanks again!
-
Ok, should it be in the order it is in your post? EDIT: wooho wiki is back up but what is a string? EDIT2 : It worked!!!!! Spawned me at wrong coordinates but thats my fault Thanks for helping me with everything EDIT3: (lol) it works, but how do i exactly change the type i did read about it on wiki but when i tried it it says ''expected '')'' near x''
-
But it has to not teleport any vehicles so i just delete setelementposition (veh..........)? Thanks by the way
-
I have finally got a teleport command script thanks to varez, but now i would like to make a onmarkerhit teleport, Since wiki is down, and it isnt in the old version (cache) Can someone explain this to me? This is the command code: function sls (playerSource) local vehicle = getPedOccupiedVehicle(playerSource) if vehicle then setVehicleFrozen(vehicle,true) setElementPosition (vehicle, 1544.2783203125,-1354.1123046875,329.4729309082) setTimer(setVehicleFrozen,50,1,vehicle,false) else setElementPosition (playerSource, 1544.2783203125,-1354.1123046875,329.4729309082) end outputChatBox ("You Have Been Teleported To Skydive Los Santos Tower!", playerSource, 0, 255, 0) end addCommandHandler ( "sls", sls ) i think i should change addcommandhandler to addeventhandler and then something like onmarkerhit ID??
-
What code are you talking about? Yes it's correct. I wonder why people don't use the 3rd parameter for addCommandHandler which is "restricted". There is no need for extra code, just change acl.xml a bit to block the command for everyone and let some groups use it. So simple and shortens the script. Thanks, varez and 50p
-
Ok, Thanks! Really quick responses here
-
Ok thanks! So, whats the extra code ? EDIT: i just looked it up in an other topic it says i can dis-allow default users in acl to the command by using command.(commandname) Is that correct?
-
I want to make a command that is only available for admins, what do i have to do? Thanks in advance!
-
Thanks! Down for everyone
-
I can't connect to it!! Is it down for some reason or just me?
-
Thanks again Ok sorry for triple
-
Sorry for triple post, but one more question if you die yuo get the teleport map were you would like to spawn, but i want to disable that so people spawn at my assigned place, they do but then the menu still pops up ty
-
YEAH it worked thanks varez
-
Thanks ill try that
-
Thats weird, can it be caused by any other scripts? But i'll try Nope still doesn't work, i think its an other resource i run.... Should i unzip it? By the way, the server itself said something different than that I it was like a mini-/ EDIT downloaded newest again, so it spawns me on the regular place but when i edit it it gives that symbol error
-
Yes, when i edit it says unexpected symbol near ''something weird '' in log it says: [2010-09-19 10:31:12] Resource 'p-spawn' changed, reloading and starting [2010-09-19 10:31:12] Starting p-spawn [2010-09-19 10:31:12] SCRIPT ERROR: p-spawn\script.lua:1: unexpected symbol near 'ï' [2010-09-19 10:31:12] WARNING: Loading script failed: p-spawn\script.lua:1: unexpected symbol near 'ï' [2010-09-19 10:31:12] start: Resource 'p-spawn' started if i try to join then, its at mountain chilliad and i only see clouds like other people
-
Ok thanks but i'll try changing them now thanks!
-
First i edited it, to my new coordinates but original doesnt work either, but know i notice this only works without play but i kinda need it for play/freeroam any way to get it work? EDIT: It did work with original, without play mode i'll try editing coordinates now to see if it will work....
-
Uhm when i try to start it in server it says WARNING: Loading script failed: p-spawn\script.lua:1: unexpected symbol near 'ï' Help me please!!
-
Alright, thanks for everthing I will test tomorrow Thanks again
-
Tab panel? I dont have tabs it could be in a tab or something sorry that im soo noobish...so i just paste my lines after: wndhelp etc?
-
Sorry, but could you explain more precise, im really new to all of this and the format of GUIeditor is different then helpmanager should i post code of helpmanager? And again, Thanks
-
Yes i mean that, Yes i tried but i cant see were to edit it, And does that work with GUIeditor? I only want my own GUI menu not the regular one Thanks for quick response ! You can just copy the cords from the GUI window and paste it on the one you want to edit.. long quote, but thanks but im a real noob were is that? there are like many guiaddwindow stuff and like that Thanks And btw i would like to keep it that it opens on joining right?
-
Yes i mean that, Yes i tried but i cant see were to edit it, And does that work with GUIeditor? I only want my own GUI menu not the regular one Thanks for quick response !
-
I created a menu with GUIeditor so how do i replace the regular help with the code? code: GUIEditor_Window = {} GUIEditor_Memo = {} GUIEditor_Checkbox = {} GUIEditor_Window[1] = guiCreateWindow(353,134,869,468,"Guns N Roses - welcome - Help",false) GUIEditor_Memo[1] = guiCreateMemo(79,55,781,223,"TEXT",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[1],true) GUIEditor_Checkbox[1] = guiCreateCheckBox(195,345,20,16,"",false,false,GUIEditor_Window[1]) GUIEditor_Memo[2] = guiCreateMemo(231,348,225,29," I like GUNS N ROSES",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[2],true)