Jump to content

[HELP] RPG SERVER


6d23

Recommended Posts

Posted

i need to get a RPG game, I DONT NEED SCRIPTS i want to learn, and tutorials here are a little incomplete only page i like is wiki.

i need someone to explain this to me or a resourse for that...

1) car ownership

like in most RPG games people got their own cars and people can localize them i got the /lock script

so dont worry, and 50p mode shop is not working well =(.

2) jobs

jobs like taxi drivers and police and army. etc.

PLEASE if you dont want to post resources post help, best way to help someone is making him understand all things. thanks!

:lol:

Posted

RLY RLY RLY RLY RLY Thnxs it really helped, can someone help me with vehicle ownership and in bank system cause 50p bank is not working only it says bank balance and when i put /deposit $$$ it says you must be in the banker marker but i dont see any blip!! help lease and thanks for coordinates help

Posted

The bank is in Las Venturas in the Building Plan or something like that. It's to the East of 4 Dragons Casino (go straight past the Ammunation, head to the Transfender garage and the icon will appear).

Posted

thanks man, but how can i do to make all players in all places see that marker? (if you can with explanation/tutorial) and how to make Own vehicles?

Dont give me resources, (only if you want) i want to learn guys. :D thanks

P.D: I Tried making a script and i failed (see the other post saying [HELP] Welcome Message) i readed

robhol guide like 3 times (exact number) and in wiki all things i do is bad. :cry:

maybe im not for this... :cry::cry::cry:

please if someone knows about please help with the question :arrowup:

Posted

You want to know everything already and start making RPG resources. If you have never learnt any programming/scripting language it will be challenging for you to learn. First few weeks will make you go nuts but if you really want to learn you will survive.

If you want to create vehicle, you use createVehicle function or tag in map file.

I'll give you advice... Use wiki like if it was a fridge, that you look into when you want to eat. Wiki is the site that you must keep opened at all time. You'd find createVehicle function easily with only 2 clicks.

Posted

ty ty ty ty, sorry for the spamming but im really ancious...

P.D: i know .bat, .html, .au3 but this is hard, i will really really try this... thanks :D

Posted

ok guys, i checked it and this was the result

--Gui Starts Here
---------------------
function guihelp (commandName)
 
GUIEditor_Window = {}
GUIEditor_Button = {}
GUIEditor_Label = {}
 
GUIEditor_Window[1] = guiCreateWindow(167,126,554,421,"Grasiel Clan Server -",false)
See_Factions = guiCreateButton(0.1047,0.1116,0.3664,0.247,"See Factions",true,GUIEditor_Window[1])
How_To_Join = guiCreateButton(0.0993,0.4181,0.3664,0.2565,"How To Join",true,GUIEditor_Window[1])
GUIEditor_Button[1] = guiCreateButton(0.5072,0.1188,0.4224,0.2447,"Being A Criminal",true,GUIEditor_Window[1])
GUIEditor_Label[1] = guiCreateLabel(0.0614,0.8361,0.8412,0.1164,"We Recomend To See Being A Criminal and Factions",true,GUIEditor_Window[1])
guiLabelSetColor(GUIEditor_Label[1],255,255,255)
guiLabelSetVerticalAlign(GUIEditor_Label[1],"top")
guiLabelSetHorizontalAlign(GUIEditor_Label[1],"left",false)
 
--- --- --- --- ---
addCommandHandler ("info", guihelp)
end

but when i type /info it dont appears, in debugscript 3 it dont says nothing,

now what is the problem, or im using something incorrect?

Posted

you are adding the command handler inside the function, so the command handler is never created (because the function is never called)

just move the command handler outside of the guihelp function

Posted

this is the new code:

addCommandHandler ("info", guihelp)
--Gui Starts Here
---------------------
function guihelp (commandName)
 
GUIEditor_Window = {}
GUIEditor_Button = {}
GUIEditor_Label = {}
 
GUIEditor_Window[1] = guiCreateWindow(167,126,554,421,"Grasiel Clan Server -",false)
See_Factions = guiCreateButton(0.1047,0.1116,0.3664,0.247,"See Factions",true,GUIEditor_Window[1])
How_To_Join = guiCreateButton(0.0993,0.4181,0.3664,0.2565,"How To Join",true,GUIEditor_Window[1])
GUIEditor_Button[1] = guiCreateButton(0.5072,0.1188,0.4224,0.2447,"Being A Criminal",true,GUIEditor_Window[1])
GUIEditor_Label[1] = guiCreateLabel(0.0614,0.8361,0.8412,0.1164,"We Recomend To See Being A Criminal and Factions",true,GUIEditor_Window[1])
guiLabelSetColor(GUIEditor_Label[1],255,255,255)
guiLabelSetVerticalAlign(GUIEditor_Label[1],"top")
guiLabelSetHorizontalAlign(GUIEditor_Label[1],"left",false)
 
--- --- --- --- ---
end

maybe im doing something bad right?
Posted

So is this one correct?

addCommandHandler ("info", guihelp)
--Gui Starts Here
---------------------
function guihelp (commandName)
 
GUIEditor_Window = {}
GUIEditor_Button = {}
GUIEditor_Label = {}
 
GUIEditor_Window[1] = guiCreateWindow(167,126,554,421,"Grasiel Clan Server -",false)
See_Factions = guiCreateButton(0.1047,0.1116,0.3664,0.247,"See Factions",true,GUIEditor_Window[1])
How_To_Join = guiCreateButton(0.0993,0.4181,0.3664,0.2565,"How To Join",true,GUIEditor_Window[1])
GUIEditor_Button[1] = guiCreateButton(0.5072,0.1188,0.4224,0.2447,"Being A Criminal",true,GUIEditor_Window[1])
GUIEditor_Label[1] = guiCreateLabel(0.0614,0.8361,0.8412,0.1164,"We Recomend To See Being A Criminal and Factions",true,GUIEditor_Window[1])
guiLabelSetColor(GUIEditor_Label[1],255,255,255)
guiLabelSetVerticalAlign(GUIEditor_Label[1],"top")
guiLabelSetHorizontalAlign(GUIEditor_Label[1],"left",false)
 
--- --- --- --- ---
end

If its incorrect can someone post how will it be correct?

Posted

New code:

GUIEditor_Window = {}
GUIEditor_Button = {}
GUIEditor_Label = {}
 
function guihelp ()
if guiGetVisible(GUIEditor_Window[1]) then
guiSetVisible(GUIEditor_Window[1],false)
showCursor(false)
else
GUIEditor_Window[1] = guiCreateWindow(167,126,554,421,"Grasiel Clan Server -",false)
See_Factions = guiCreateButton(0.1047,0.1116,0.3664,0.247,"See Factions",true,GUIEditor_Window[1])
How_To_Join = guiCreateButton(0.0993,0.4181,0.3664,0.2565,"How To Join",true,GUIEditor_Window[1])
GUIEditor_Button[1] = guiCreateButton(0.5072,0.1188,0.4224,0.2447,"Being A Criminal",true,GUIEditor_Window[1])
GUIEditor_Label[1] = guiCreateLabel(0.0614,0.8361,0.8412,0.1164,"We Recomend To See Being A Criminal and Factions",true,GUIEditor_Window[1])
guiLabelSetColor(GUIEditor_Label[1],255,255,255)
guiLabelSetVerticalAlign(GUIEditor_Label[1],"top")
guiLabelSetHorizontalAlign(GUIEditor_Label[1],"left",false)
guiSetVisible(GUIEditor_Window[1],true)
showCursor(true)
end
end
addCommandHandler("info",guihelp)

THERE IS 100% WORKING! AND, please learn scripting! I just help you at this time, if you willnot to start learning some scripts, you will NOT get my help anymore.

EDIT: Don't ask now how to open new window when button is clicked!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...