-
Posts
677 -
Joined
-
Last visited
-
Days Won
7
Everything posted by Storm-Hanma
-
Help me with this issue,its getting annoying!!!
Storm-Hanma replied to Soapbosnia's topic in Servers
Well if u need free server pls visit WWW.pirateshosting.com and take ur free server instead of opening ports ,and some PCs r poor to run 24*7 -
So I see saes RPG is added so it safest now?
- 6 replies
-
- server
- synchronization
-
(and 1 more)
Tagged with:
-
Its good idea but there will some players who get ban by insulting ,using abused words ,not folowing rules when they get ban from 1 server next time they will think to do not repeat this if they join 2nd server if this 2nd server is In the database even they get ban here to too? Well idea is good I support I will add my server in bansyc !!
- 6 replies
-
- server
- synchronization
-
(and 1 more)
Tagged with:
-
there is not error duel works fine the problem is i need to add ,bet function like this when player send duel invite to other player when both accept duel they need to bet some amount to enter duel ! the player who win duel will get the bet money u got what i mean? and only ak 47 and m4 weapon must work on duel arena i set the all stuffs in code just i need a function of bet money idk how to add bet function! i tested the code but it takes cash only its not duel system! i need a function of bet system for my duel system! example ; /bet playername amount ; /bet amazingcasino 2000 =/bet khadeer143 2000 now total is = 4000 [this money will taken by the winner] when amazingcasino and khadeer143 will be in duel the one who win will get 4000 money !
-
Buy top 20 position in the MTA server browser for 20 days
Storm-Hanma replied to ccw's topic in Servers
Yea it is -
no one to help? my baddd
-
its base on id ,i need /duel playername not id
-
UPDATE : now we added ogpanel has controlled panel for game servers users can now use webftp and ftp client for uploads !! Added cs:go servers for free grab them now by visiting - pirateshosting.com
- 52 replies
-
- 1
-
-
- free game servers
- mtasa
-
(and 1 more)
Tagged with:
-
Hello community members I need help in /bet player amount ,I created a duel system its works fine but problem is I need to make it has When player 1 to duel to player 2 If player 2 accept it now both players need to place bet so that they will enter the duel arena , I used take money code but it not works anyone can help ? function takeCash ( thePlayer, command, amount ) -- when the takecash command is called takePlayerMoney ( thePlayer, tonumber(amount) ) -- take the amount of money from the player end addCommandHandler ( "takecash", takeCash ) -- add a handler function for the command "takecash"
-
U need to add the ur login panel in acl rights of admin group For example : u have resourcename - login panel Press p /resource tab in resource tab look for manage acl /admin group/add object /resource.login panel that's it no restart login panel it will work !even if not work then Sorry u said already that resource is in admin rights then Reupload new acl it will work !!
-
Hello bhai log mene ek server open kiya hai name - Default -MTA-United gameplay slots -512 !daily 25 player online rahte hai server me aur server 30% community and 70% mere khud ke resources me chalte hai me chote - chote resources script karleta hu but Muje ab long resources banana hai jaise ke turf system ,gang system etc.. Agar apme se koi scripter hai to Mike pm karo mere fb -kadheerkadheer or Khadeer MTA !me apko pay be karunga apke work base per ,sirf paytm payment hoge agar interested ho to muje pm karo
-
Hello bhai log mene ek server open kiya hai name - Default -MTA-United gameplay slots -512 !daily 25 player online rahte hai server me aur server 30% community and 70% mere khud ke resources me chalte hai me chote - chote resources script karleta hu but Muje ab long resources banana hai jaise ke turf system ,gang system etc.. Agar apme se koi scripter hai to Mike pm karo mere fb -kadheerkadheer or Khadeer MTA !me apko pay be karunga apke work base per ,sirf paytm payment hoge agar interested ho to muje pm karo
-
It coded has need to be in vehicle to enter ? Did u check this
-
Original my resource - https://community.multitheftauto.com/index.php?p=resources&s=details&id=14938 Fake - https://community.multitheftauto.com/index.php?p=resources&s=details&id=14948 he just used my resource has he script it and changed the name and description in his native language even he copy my pic too delete this asap He Also uploaded another fake resource which is already uploaded by original author (admin tag ) Fake - https://community.multitheftauto.com/index.php?p=resources&s=details&id=14949 DONE
-
LV lighting effects only visible in editor test
Storm-Hanma replied to schnozzle's topic in Scripting
That's a map skill ,did u use some one maps ? -
Hello all I seen some freeroam servers have duel system ,so I think to make one for my server there is not errors but even script not work function getPlayerFromID ( id ) return call ( getResourceFromName ( "game_id" ), "getPlayerFromID", tonumber ( id ) ); end function getPlayerID ( player ) return getElementData ( player, "id" ); end duelTable = { }; fightPlace = { x, y, z, interior, dimension }; function tpToFightPlace ( element ) setElementPosition ( element, fightPlace[1], fightPlace[2], fightPlace[3] ); setElementInterior ( element, fightPlace[4] ); setElementDimension ( element, fightPlace[5] ); giveWeapon ( element, 26 ); giveWeapon ( element, 24 ); giveWeapon ( element, 28 ); giveWeapon ( element, 31 ); end function duel ( player, cmd, arg ) if ( tonumber ( arg ) ) then local p = getPlayerFromID ( id ); if ( isElement ( p ) ) then if ( not duelTable [ p ] ) then duelTable [ p ] = player; outputChatBox ( "You sent invite to " .. getPlayerName ( p ) .. "!", player, 255, 255, 255, true ) else outputChatBox ( "This player is already challanged!", player, 255, 0, 0, true ); end else outputChatBox ( "Unable to find player with this ID!", player, 255, 0, 0, true ); end end if ( arg == "accept" ) then local p = duelTable [ player ]; if ( isElement ( p ) ) then outputChatBox ( "The player " .. getPlayerName ( player ) .. " (ID:" .. getPlayerID ( player ) .. ") was challanged by " .. getPlayerName ( p ) .. " (ID:" .. getPlayerID ( p ) .. ")", root, 255, 255, 255, true ); tpToFightPlace ( p ); tpToFightPlace ( player ); duelTable [ player ] = nil; else outputChatBox ( "Noone challanged you!", player, 255, 0, 0, true ); end elseif ( arg == "decline" ) then local p = duelTable [ player ]; if ( isElement ( p ) ) then duelTable [ player ] = nil; outputChatBox ( getPlayerName ( player ) .. " declined.", p, 255, 0, 0, true ); end else return; end end addCommandHandler ( "duel", duel ); Nor errors I added this code in server side but not working
-
Why u giving them a map with gate? When they accept duel make sure they bet money to ,let them decide were to fight
-
How much would a Post Apocalyptic RP server cost me?
Storm-Hanma replied to Csipsz's topic in Scripting
U r newbie and u need developer and you will pay its all OK but make sure u not get fool because some will give u community resource by editing and u may think its really made by him so how u need to chose best scripter ? Simply check on this forum who comments ,who have high reputation ,check his community resources too mean while many r there who script resources for money but chose only those who have good reputation + skills like @IIYAMA have not only iiyama many r there here @TheMOG but I refers these guys for ur work !! I am not trolling others I always take help from these guys so I suggest you !! -
Yea server need to be off when u edit acl.XML if u still facing problem pm me I will fix ur acl.XML with using login details only if u want or ignore !!
-
What about CVC payemtethods ? Which help Indians to buy world wide transaction will be good of u add CVC it used by go daddy too
- 25 replies
-
- vps
- shared hosting
-
(and 4 more)
Tagged with:
-
It will be helpful if u tell me what u looking for exactly ? Then only I can help
-
Well the only payment available for top list is PayPal no other payments option available !and even if u have credit card or PayPal money u need to wait for weeks to buy it because it always Bussy with top list buyers so u need to try daily to buy top 14 list hope @ccwincrease the list to top 20 list and add other payment option too if u have any more quires ask ccw he is admin
-
u need to edit acl.xml when ur server is off anf u need to ur username in admin group not console like this find admin group and add urself <group name="Admin"> <acl name="Moderator"></acl> <acl name="SuperModerator"></acl> <acl name="Admin"></acl> <acl name="RPC"></acl> <object name="user.amazingcasino"></object> <object name="resource.admin"></object> <object name="resource.webadmin"></object> </group>
-
sorry for my bad english dont laugh pls !!! the thing is i created a katana arena map i added functions using command handle /katana so player will teleport on katana arena the problem is when player die he must spawn in katana arena but it spawn to default random spawns of free roam how can i fix this? @IIYAMA