-
Posts
1,131 -
Joined
-
Last visited
-
Days Won
2
Everything posted by MIKI785
-
Nice map, I like it.
-
Is this a Debian 5? I think that it's not supported any more, you have to install Debian 6 Squezze.. I had the same problem, so I had to install Debian 6.
-
It's nice. It would be even better if you would support HEX codes So if you will be doing some update, don't forget to add HEX codes support
-
All the posts here doesn't block colors in chat... For chat, use this: (server) addEventHandler("onPlayerChat", getRootElement(), function (message, type) if type == 0 then --If it's main chat cancelEvent() --Message won't send local uncolored = string.gsub(message, "#%x%x%x%x%x%x", "") --Delete all HEX codes. local r, g, b = getPlayerNametagColor(source) outputChatBox(getPlayerName(source) .. ": #ffffff" .. uncolored, getRootElement(), r, g, b, true) --Send message manually outputServerLog("CHAT: "..getPlayerName(source)..": "..message) --Output to log manually end end) For changing the nick in-game, use: (server) addEventHandler("onPlayerChangeNick", getRootElement(), function () cancelEvent() --Nick won't change. outputChatBox("Sorry, you can't change your nick!", source, 255,0,0) end)
-
Maybe the accounts are not created at all, registration is via that panel? If yes, does it have acces to the addAccount function?
-
or you can do it via HTTP, just type your server's IP adress followed by HTTP port, you then login. You will see in the menu Admin > Groups, here you can simply edit all the groups.
-
I think it's just when you release it... it's better if it's on the community also than just on the forum. Thanks They won't get ripped off
-
MS Stats Hello, I want to represent you my resource which I'm using on my server (ip: mshost.cz:22003), I'm selling it in the two versions, one is XML based and the other one is MySQL based. MySQL one has more features than the XML one. Features that are in both versions: Statistics: All statistics can be viewed by GUI (F3) or by writing commands listed below to the chat: !points - Player's points (these are earned by winning the race or by getting a hunter) !cash - Player's cash (these are earned also by winning the race or by getting a hunter, but you can buy some things, these are listed below) !wins - Number of won races. !hunters - Number of obtained hunters !2nd - Number of second positions !3rd - Number of third positions !deaths - Number of deaths !messages / !msgs - Number of sent messages to the main chat !playtime / !time - Number of played minutes on server !bonuses - Number of bonus vouchers Shop: /fix - Repair of vehicle, price can be set in the settings in Admin Panel. /nos - Nitro, price can be set in the Admin Panel. Points and cash: Points and cash are given when the player is killed, he doesn't have to be first, he will get awarded for every place, but award is decreasing with the places. It also depends on the number of players on the server, more players = bigger award. Award for the Hunter is still the same. Bonus Vouchers: When you get a hunter, you will have a 1:20 chance to get this voucher, when you get it, you will be able to use the /use command, when you use it, one voucher is gone and you will get a free nitro + repair. Other features: The less important features are: !admins - Will list admins with their levels. PM system with PM reader for admins. Autoteams - Auto assigning players in clans to their teams, their cars will have the color of clan, blips and their nicks also. Features that are in the MySQL version only: GUI: *The black box under the 'Player's commentary' will not be there! Clan Statistics: There are clan statistics shown above in the GUI. Clan Leader of the clan can change the clan's commentary and web site via the web (you have to make this or you can buy 'WebStats' of me as well). !top commands: These commands list the 3 players with the highest statistic value. Available commands are: !top points !top cash !top wins and !top hunters Map Ratings: Players can rate the maps, whether /like or /dislike. dxDrawing then show the number of dislikes, likes and average rate at the start of each map, it also outputs to the chat. Inter-Server Chat: Players can chat to the other servers with this resource, just type + before the chat message and i will be seen on all servers. I have currently connected 4 servers by this. These are not all the features that are in this resource! You can test it on my server. Web Stats This is add-on to this resource, you can see your statistics, top players, set avatar and others using the web. ScreenShots: Prices: MySQL Version: €20.00 XML Version: €10.00 WebStats: €3.00 *Installation and configuration by myself is free. If you are interested in the buying this or you want more info, PM me or contact me via the skype: miki7852
-
I can't really prove that it's not scam because nobody bought it yet. I don't have the server in my home, so i can't post anything.. Server has: RAM: 4096 MB Connectivity: 1GB CPU: Intel® Xeon® Processor X3450 (8M Cache, 2.66 GHz) I think it's OK for start..
-
Hello, Today we just opened a new Multi Theft Auto Server hosting. www.mshost.cz About: Our aim is to provide Multi Theft Auto game servers at high quality and low prices, we offer multiple packages so you can choose what suits you. We start at package 'Map Editor' at 0.50 Euro per month! All of our prices are per month. You will get a basic web administration and FTP account to your server. Payment can be done via PayPal only. Our prices are: We also offer some add-ons, now it's just one but in future there will be more: Special offer We just opened our hosting, so we offer something special until the 15th of April (15/04/12). If you order until this date, you will get extra week of using our services for free!
-
You didn't set the mapIsAlreadySet in the nextmap command.. And the panel is another resource? Or is it in the race?
-
The OnClientPlayerHitByWaterCannon is not in the current version of MTA. It will be in the 1.3.1.
-
Because variable vehicle wasn't vehicle element?
-
if it's really your first map, then Very good work.
-
'onPlayerPickUpRacePickup' doesn't provide vehicle element.. try this: addEvent ( 'onPlayerPickUpRacePickup', true ) function zaa ( id, type, model ) if ( getPlayerTeam ( source ) ) then if ( eventName == 'onPlayerPickUpRacePickup' and id == 'vehiclechange' or id == 'repair' or id == 'nitro' ) then local r, g, b = getTeamColor ( getPlayerTeam ( source ) ) local vehicle = getPedOccupiedVehicle(source) setVehicleColor ( vehicle, r, g, b ); else local r, g, b = getTeamColor ( getPlayerTeam ( source ) ) local vehicle = getPedOccupiedVehicle(source) setVehicleColor ( vehicle, r, g, b ) end end end addEventHandler ( 'onPlayerVehicleEnter', root, zaa ) addEventHandler ( 'onPlayerPickUpRacePickup', root, zaa )
-
try: addCommandHandler("/admin", function () guiSetVisible(window1, true) end)
-
Then, search on google for tutorials and learn, then download some free scripts with SQL and see how it works, then you should know how to do it yourself.
-
Something like this? Client: addEventHandler("onClientGuiClick", someButton, --Change someButton to your button.. function () triggerServerEvent("iWannaTeleportNow", getLocalPlayer()) end) Server: addEvent("iWannaTeleportNow", true) addEventHandler("iWannaTeleportNow", getRootElement(), function () setElementPosition(source, posX, posY, posZ ) --Edit outputChatBox("Player " .. getPlayerName(source) .. " teleported!") end) It should work, you have to edit it a little bit, but you might get the idea.
-
Then, download this: https://community.multitheftauto.com/index.php?p= ... ls&id=4060 What's the problem?
-
Nice map. Isn't this better than link?
-
I already found it myself, that's why I didn't reply, but thanks for your help anyway .
-
It's stupid to do it via XML, you should do it via SQL. It's much better.